UpperCase constructor

UpperCase({
  1. required String value,
  2. String? attribute,
  3. String? customMessage,
})

Implementation

UpperCase({
  required this.value,
  this.attribute,
  this.customMessage,
});