GrpcError.ok constructor

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

The operation completed successfully.

Implementation

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