GrpcError.aborted constructor
const
GrpcError.aborted([
- String? message,
- List<
GeneratedMessage> ? details, - 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;