MatchAction<T>.and constructor

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

Implementation

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