support method

  1. @override
bool support(
  1. dynamic arg
)
override

Used to give the information if specified arg is supported by ArgProcessor.

Implementation

@override
bool support(dynamic arg) {
  return arg != null && arg is String && _matchRegexp.hasMatch(arg);
}