CancelError constructor
CancelError({
- required String message,
- CancelToken? cancelToken,
- String? reason,
- RequestOptions? requestOptions,
- StackTrace? stackTrace,
- Object? originalError,
- DateTime? timestamp,
Implementation
CancelError({
required super.message,
this.cancelToken,
this.reason,
super.requestOptions,
super.stackTrace,
super.originalError,
super.timestamp,
});