ExecutionFilter_Strategy constructor

ExecutionFilter_Strategy({
  1. ExecutionFilter_Strategy_FirstMatch? firstMatch,
  2. ExecutionFilter_Strategy_NextMatch? nextMatch,
  3. ExecutionFilter_Strategy_AllMatch? allMatch,
})

Implementation

factory ExecutionFilter_Strategy({
  ExecutionFilter_Strategy_FirstMatch? firstMatch,
  ExecutionFilter_Strategy_NextMatch? nextMatch,
  ExecutionFilter_Strategy_AllMatch? allMatch,
}) {
  final _result = create();
  if (firstMatch != null) {
    _result.firstMatch = firstMatch;
  }
  if (nextMatch != null) {
    _result.nextMatch = nextMatch;
  }
  if (allMatch != null) {
    _result.allMatch = allMatch;
  }
  return _result;
}