StartGroupCallRecording constructor

const StartGroupCallRecording({
  1. required int groupCallId,
  2. required String title,
  3. required bool recordVideo,
  4. required bool usePortraitOrientation,
})

Starts recording of an active group call. Requires groupCall.can_be_managed group call flag

Implementation

const StartGroupCallRecording({
  required this.groupCallId,
  required this.title,
  required this.recordVideo,
  required this.usePortraitOrientation,
});