GrpcError.unauthenticated constructor

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

The request does not have valid authentication credentials for the operation.

Implementation

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