GrpcError.ok constructor

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

The operation completed successfully.

Implementation

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