startLiveStream method Null safety

Future<StreamId> startLiveStream(
  1. {required LiveStreamEndpoints endpoints,
  2. StreamingSettings? streamingSettings,
  3. StreamId? streamId,
  4. 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<StreamId> startLiveStream({
  required LiveStreamEndpoints endpoints,
  StreamingSettings? streamingSettings,
  StreamId? streamId,
  bool forceNew = false,
}) =>
    _platformBridge.startLiveStream(_native, endpoints, streamingSettings, streamId, forceNew);