ExceptionOptions constructor

ExceptionOptions({
  1. bool showInternalServerErrors = true,
  2. bool showNetworkErrors = true,
  3. bool showValidationErrors = true,
  4. Map<String, List<String>> resolveValidationErrorsMap(
    1. dynamic response
    )?,
})

Implementation

ExceptionOptions({
  this.showInternalServerErrors = true,
  this.showNetworkErrors = true,
  this.showValidationErrors = true,
  this.resolveValidationErrorsMap,
}) {
  reset();
}