AdapterException constructor

AdapterException({
  1. required String message,
  2. required AdapterExceptionType type,
  3. int? statusCode,
  4. AdapterResponse? response,
  5. dynamic originalError,
  6. StackTrace? stackTrace,
})

Implementation

AdapterException({
  required this.message,
  required this.type,
  this.statusCode,
  this.response,
  this.originalError,
  this.stackTrace,
});