AdapterException constructor
AdapterException({
- required String message,
- required AdapterExceptionType type,
- int? statusCode,
- AdapterResponse? response,
- dynamic originalError,
- StackTrace? stackTrace,
Implementation
AdapterException({
required this.message,
required this.type,
this.statusCode,
this.response,
this.originalError,
this.stackTrace,
});