connect method

void connect(
  1. String command
)

Creates a two-way connection to an application on RTMP Server.

Implementation

void connect(String command) async {
  assert(_memory != null);
  RtmpConnectionPlatform.instance
      .connect({"memory": _memory, "command": command});
}