createChannel method

MGrpcClientEngine createChannel()

Implementation

MGrpcClientEngine createChannel() {
  List<String> host = config.host.split(":");
  conn ??= ClientChannel(
    host[0],
    port: int.parse(host[1]),
    options: channelOptions,
  );

  return this;
}