ClientException constructor

ClientException({
  1. Uri? url,
  2. bool isAbort = false,
  3. int statusCode = 0,
  4. Map<String, dynamic> response = const {},
  5. dynamic originalError,
})

Implementation

ClientException({
  this.url,
  this.isAbort = false,
  this.statusCode = 0,
  this.response = const {},
  this.originalError,
});