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