RemoteClient constructor

RemoteClient(
  1. StreamChannel<String> channel,
  2. CloseWithReason closeWithReason,
  3. String protocol
)

Implementation

RemoteClient(
  StreamChannel<String> channel,
  CloseWithReason closeWithReason,
  String protocol,
) : this.fromJsonChannel(
        const _JsonMapTransformer().bind(channel),
        closeWithReason,
        protocol,
      );