GrpcError.unauthenticated constructor

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

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

Implementation

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