BaseExceptionOptions constructor

BaseExceptionOptions({
  1. bool showInternalServerErrors = true,
  2. bool showNetworkErrors = true,
  3. bool showValidationErrors = true,
})

Implementation

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