OperationCanceledException constructor

OperationCanceledException({
  1. String? message = 'The operation was canceled.',
  2. Exception? innerException,
  3. StackTrace? stackTrace,
  4. CancellationToken? cancellationToken,
})

Implementation

OperationCanceledException({
  super.message = 'The operation was canceled.',
  super.innerException,
  super.stackTrace,
  this.cancellationToken,
});