Same constructor

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

Implementation

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