matches method
Checks if a property name matches this convention's pattern.
Implementation
@override
bool matches(String propertyName) {
if (propertyName.isEmpty) return false;
// All uppercase letters
return RegExp(r'^[A-Z][A-Z0-9]*$').hasMatch(propertyName);
}