CSQMaskingConfig.maskAll constructor
CSQMaskingConfig.maskAll()
Returns a CSQMaskingConfig where all values are set to true.
Meaning everything will be masked and all interactions will be ignored.
Note: If you did not include any sensitive content in CustomPaints or SVG images, prefer to use CSQMaskingConfig with maskCustomPaints and maskSvgImages set to false, to avoid unnecessary masking.
Implementation
factory CSQMaskingConfig.maskAll() {
return const CSQMaskingConfig(
maskTexts: true,
maskTextFields: true,
maskImages: true,
maskSvgImages: true,
maskCharts: true,
maskCustomPaints: true,
maskInteractions: true,
);
}