stopLiveStream method

Future<void> stopLiveStream({
  1. StreamId? streamId,
})

Stops an ongoing live stream.

streamId is optional if there is only one ongoing recording in the call.

Note: the initiating participant must be a room owner. i.e., they must have joined the call using a meeting token which has is_owner set to true.

Implementation

Future<void> stopLiveStream({StreamId? streamId}) => _platformBridge.stopLiveStream(_native, streamId);