AdapterException constructor

AdapterException({
  1. required String error,
  2. String? reason,
  3. int? code,
  4. String? rawBody,
})

Implementation

AdapterException({
  required this.error,
  this.reason,
  this.code,
  this.rawBody,
});