startLiveStream method Null safety
- {required LiveStreamEndpoints endpoints,
- StreamingSettings? streamingSettings,
- StreamId? streamId,
- bool forceNew = false}
Starts a new live stream.
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> startLiveStream({
required LiveStreamEndpoints endpoints,
StreamingSettings? streamingSettings,
StreamId? streamId,
bool forceNew = false,
}) =>
_platformBridge.startLiveStream(_native, endpoints, streamingSettings, streamId, forceNew);