CXSessionReplayOptions constructor

CXSessionReplayOptions({
  1. required double captureScale,
  2. required double captureCompressQuality,
  3. required int sessionRecordingSampleRate,
  4. required bool autoStartSessionRecording,
  5. bool? maskAllTexts,
  6. List<String>? textsToMask,
  7. bool? maskAllImages,
})

Implementation

CXSessionReplayOptions({
  required this.captureScale,
  required this.captureCompressQuality,
  required this.sessionRecordingSampleRate,
  required this.autoStartSessionRecording,
  this.maskAllTexts,
  this.textsToMask,
  this.maskAllImages,
});