NodeGRPCService constructor
NodeGRPCService({})
Implementation
NodeGRPCService({
required this.host,
required this.port,
this.options = const ChannelOptions(
credentials: ChannelCredentials.insecure(),
),
}) : nodeStub = NodeRpcClient(
getClientChannel(
grpcSettings:
GrpcSettings(host: host, port: port, options: options)),
);