GrpcError.deadlineExceeded constructor

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

Deadline expired before operation could complete. For operations that change the state of the system, this error may be returned even if the operation has completed successfully. For example, a successful response from a server could have been delayed long enough for the deadline to expire.

Implementation

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