isMatch method

  1. @override
bool isMatch(
  1. dynamic input
)
override

Implementation

@override
bool isMatch(input) {
  final target = values[0];
  return !(target == _parseInputAsStr(input));
}