@override bool isValid(final String? value) => value?.let( (final String it) => regExp.firstMatch(it.trim())?.group(0) == it.trim(), ) ?? false;