connect method

Future<void> connect(
  1. String command
)

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

Implementation

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