LowerCase constructor

LowerCase({
  1. required String value,
  2. required String attribute,
  3. String? customMessage,
  4. String? customLabel,
})

Implementation

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