GrpcError.notFound constructor

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

Some requested entity (e.g., file or directory) was not found.

Implementation

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