CSQMaskingConfig constructor

const CSQMaskingConfig({
  1. bool? maskTexts,
  2. bool? maskImages,
  3. bool? maskTextFields,
  4. bool? maskSvgImages,
  5. bool? maskCharts,
  6. bool? maskCustomPaints,
  7. bool? maskInteractions,
})

A factory used to create a custom CSQMaskingConfig

For easier readability, consider using:

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._;