GrpcServiceManager constructor

GrpcServiceManager({
  1. String host = 'localhost',
  2. int port = 50051,
  3. bool secure = false,
})

Implementation

GrpcServiceManager({
  String host = 'localhost',
  int port = 50051,
  bool secure = false,
}) {
  _channel = GrpcOrGrpcWebClientChannel.toSingleEndpoint(
    host: host,
    port: port,
    transportSecure: secure,
  );
}