ApiException constructor

ApiException({
  1. required String url,
  2. required String message,
  3. Response? response,
  4. int? statusCode,
})

Implementation

ApiException({
  required this.url,
  required this.message,
  this.response,
  this.statusCode,
});