ApiException constructor

const ApiException(
  1. String message, {
  2. String? code,
  3. Map<String, dynamic>? details,
  4. int? statusCode,
  5. Map<String, dynamic>? response,
})

Implementation

const ApiException(
  super.message, {
  super.code,
  super.details,
  this.statusCode,
  this.response,
});