MatchAction<T> constructor

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

Implementation

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