CSQMask constructor

const CSQMask({
  1. required CSQMaskingConfig config,
  2. required Widget child,
  3. Key? key,
})

Creates a widget which applies masking to its descendants.

Implementation

const CSQMask({
  required this.config,
  required this.child,
  super.key,
});