FunctionalValueMatcher<P> constructor

FunctionalValueMatcher<P>({
  1. required String description,
  2. required bool matcher(
    1. P value
    ),
})

Implementation

FunctionalValueMatcher({
  required this.description,
  required this.matcher,
});