ConstrainViolation constructor

const ConstrainViolation({
  1. required dynamic value,
  2. required String fieldName,
  3. required String message,
})

Implementation

const ConstrainViolation({
  required this.value,
  required this.fieldName,
  required this.message,
});