startRecording method

Future<StreamId> startRecording(
  1. {StreamingSettings? streamingSettings,
  2. StreamId? streamId,
  3. bool? forceNew}
)

Starts a new recording, if recording is enabled for the current room.

streamId is optional if there is no other recording ongoing in the call.

Implementation

Future<StreamId> startRecording({
  StreamingSettings? streamingSettings,
  StreamId? streamId,
  bool? forceNew,
}) =>
    _platformBridge.startRecording(_native, streamingSettings, streamId, forceNew);