NonEventTransition<T> constructor

NonEventTransition<T>({
  1. Iterable<String> targets = const [],
  2. Duration? after,
  3. Condition<T>? condition,
  4. String? description,
  5. dynamic type = TransitionType.externalTransition,
  6. Action<T>? action,
})

Implementation

NonEventTransition(
    {Iterable<String> targets = const [],
    this.after,
    Condition<T>? condition,
    String? description,
    type = TransitionType.externalTransition,
    Action<T>? action})
    : super._(targets, condition, type, action, description);