ValidateResult.from constructor

ValidateResult.from({
  1. String? errorMessage,
  2. String? fieldName,
  3. required bool success,
  4. VerifyType? type,
  5. FormStrategy? strategy,
})

Implementation

ValidateResult.from({
  this.errorMessage,
  this.fieldName,
  required this.success,
  this.type,
  this.strategy,
});