OperationCanceledException constructor

const OperationCanceledException([
  1. String? message
])

Implementation

const OperationCanceledException([String? message])
    : super(
        failureReason: "operationCanceled",
        message: message,
      );