ApiException constructor

ApiException({
  1. required int statusCode,
  2. Object? body,
  3. Map<String, Object>? headers,
})

Implementation

ApiException({
  required this.statusCode,
  this.body,
  this.headers,
});