startStreaming method

Future<void> startStreaming({
  1. required String streamKey,
  2. String url = "rtmp://broadcast.api.video/s/",
})

Starts the live stream to the specified "url/streamKey".

Implementation

Future<void> startStreaming(
    {required String streamKey,
    String url = "rtmp://broadcast.api.video/s/"}) async {
  return _platform.startStreaming(streamKey: streamKey, url: url);
}