ValidationResult constructor

const ValidationResult({
  1. required bool isValid,
  2. String? errorMessage,
  3. String? gotPart,
  4. String? hint,
})

Implementation

const ValidationResult({
  required this.isValid,
  this.errorMessage,
  this.gotPart,
  this.hint,
});