updateLiveStream method Null safety

Future<void> updateLiveStream(
  1. {required StreamingSettings streamingSettings,
  2. StreamId? streamId}
)

Removes endpoints from 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> updateLiveStream({required StreamingSettings streamingSettings, StreamId? streamId}) =>
    _platformBridge.updateLiveStream(_native, streamingSettings, streamId);