TransitionError<T> constructor

TransitionError<T>(
  1. Machine<T> machine,
  2. State<T>? source,
  3. State<T>? target,
  4. List<Object> errors,
)

Constructs a transition error.

Implementation

TransitionError(super.machine, super.source, super.target, super.errors);