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