onPortbyCurrent property

Stream<String>? get onPortbyCurrent

Implementation

Stream<String>? get onPortbyCurrent {
  var arguments = {
    'ip': '192.168.70.156',
    'port': '812',
    'timeout': 500,
    "porta": [1, 1000]
  };
  _onportbyCurrent = portbyCurrent_channel
      .receiveBroadcastStream(arguments)
      .map((event) => jsonDecode(event.toString()));
  return _onportbyCurrent;
}