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