CancelError constructor

CancelError({
  1. required String message,
  2. CancelToken? cancelToken,
  3. String? reason,
  4. RequestOptions? requestOptions,
  5. StackTrace? stackTrace,
  6. Object? originalError,
  7. DateTime? timestamp,
})

Implementation

CancelError({
  required super.message,
  this.cancelToken,
  this.reason,
  super.requestOptions,
  super.stackTrace,
  super.originalError,
  super.timestamp,
});