support method
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);
}
Used to give the information if specified arg
is supported by ArgProcessor.
@override
bool support(dynamic arg) {
return arg != null && arg is String && _matchRegexp.hasMatch(arg);
}