connect method
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});
}