BusinessError constructor
BusinessError({
- required String code,
- required String serverMessage,
- String? traceId,
- dynamic rawResponse,
- RequestOptions? requestOptions,
- StackTrace? stackTrace,
- Object? originalError,
- DateTime? timestamp,
Implementation
BusinessError({
required this.code,
required this.serverMessage,
this.traceId,
this.rawResponse,
super.requestOptions,
super.stackTrace,
super.originalError,
super.timestamp,
}) : super(message: serverMessage);