GrpcError.aborted constructor

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

The operation was aborted, typically due to a concurrency issue like sequencer check failures, transaction aborts, etc.

See litmus test above for deciding between failedPrecondition, aborted, and unavailable.

Implementation

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