TestEventSequence<T> constructor

TestEventSequence<T>(
  1. List<TestEvent<T>> events, {
  2. Map<String, T> values = const {},
})

Constructor of a list of events to an event sequence.

Implementation

TestEventSequence(this.events, {Map<String, T> values = const {}})
    : values = BiMap.from(values);