MaskingConfig.maskAll constructor

MaskingConfig.maskAll()

Returns a MaskingConfig where all values are set to true.

Meaning everything will be masked within SessionReplay.

Implementation

factory MaskingConfig.maskAll() {
  return const MaskingConfig(
    maskTexts: true,
    maskTextFields: true,
    maskImages: true,
  );
}