TCPSocketAction.fromJson constructor

TCPSocketAction.fromJson(
  1. Map json_
)

Implementation

TCPSocketAction.fromJson(core.Map json_)
  : this(
      host: json_['host'] as core.String?,
      port: json_['port'] as core.int?,
    );