MatchAction<T>.or constructor

const MatchAction<T>.or({
  1. required String key,
  2. required Predicate<T> predicate,
  3. bool isEnabled = true,
})

Implementation

const MatchAction.or({
  required this.key,
  required this.predicate,
  this.isEnabled = true,
}) : type = MatchActionType.or;