RpcClientInfo constructor

RpcClientInfo({
  1. required String name,
  2. required String host,
  3. required int port,
  4. required String path,
})

Holds connection information for an RPC client

Implementation

RpcClientInfo({
  required this.name,
  required this.host,
  required this.port,
  required this.path,
});