MatchUseCase<T> constructor

const MatchUseCase<T>({
  1. Iterable<T> data = const [],
  2. Iterable<MatchAction<T>> matchers = const [],
})

Implementation

const MatchUseCase({
  this.data = const [],
  this.matchers = const [],
});