play method

Future<void> play(
  1. String name
)

Plays a live stream from RTMPServer.

Implementation

Future<void> play(String name) async {
  assert(_memory != null);
  RtmpStreamPlatform.instance.play({"memory": _memory, "name": name});
}