FormErrors.fromJson constructor

FormErrors.fromJson(
  1. Map<String, Object?> json
)

Creates validation errors from a JSON-like map.

Implementation

factory FormErrors.fromJson(Map<String, Object?> json) {
  return FormErrors.from(json);
}