removeLiveStreamingEndpoints method
- {required PreconfiguredLiveStreamEndpoints endpoints,
- StreamId? streamId}
Updates the settings of 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> removeLiveStreamingEndpoints({
required PreconfiguredLiveStreamEndpoints endpoints,
StreamId? streamId,
}) =>
_platformBridge.removeLiveStreamingEndpoints(_native, endpoints, streamId);