GrpcError.cancelled constructor

const GrpcError.cancelled([
  1. String? message,
  2. List<GeneratedMessage>? details,
  3. Object? rawResponse
])

The operation was cancelled (typically by the caller).

Implementation

const GrpcError.cancelled([this.message, this.details, this.rawResponse])
    : trailers = const {},
      code = StatusCode.cancelled;