resolveValidationErrorsMap property
A function that resolves validation errors from the API response.
The function takes a dynamic response as an input and returns a map where the keys are error field names and the values are lists of error messages associated with those fields.
Implementation
final Map<String, List<String>> Function(dynamic response)?
resolveValidationErrorsMap;