addLiveStreamingEndpoints method
- required PreconfiguredLiveStreamEndpoints endpoints,
- StreamId? streamId,
- bool? forceNew,
Adds additional endpoints to 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> addLiveStreamingEndpoints({
required PreconfiguredLiveStreamEndpoints endpoints,
StreamId? streamId,
bool? forceNew,
}) =>
_platformBridge.addLiveStreamingEndpoints(_native, endpoints, streamId);