CSQMaskingConfig constructor
const
CSQMaskingConfig({})
A factory used to create a custom CSQMaskingConfig
For easier readability, consider using:
- CSQMaskingConfig.maskAll -> If setting all args to true.
- CSQMaskingConfig.unMaskAll -> If setting all args to false.
This factory does not accept explicitly set null values. However you may omit arguments. In this case the omitted args will default to null, meaning no masking will be applied for those options.
Implementation
const factory CSQMaskingConfig({
bool? maskTexts,
bool? maskImages,
bool? maskTextFields,
bool? maskSvgImages,
bool? maskCharts,
bool? maskCustomPaints,
bool? maskInteractions,
}) = CSQMaskingConfig._;