ApiException constructor
ApiException({
- required String message,
- required ApiExceptionType type,
- int? statusCode,
- dynamic originalError,
- StackTrace? stackTrace,
- Map<
String, dynamic> ? errorData,
Implementation
ApiException({
required this.message,
required this.type,
this.statusCode,
this.originalError,
this.stackTrace,
this.errorData,
});