MaskingStack constructor

const MaskingStack({
  1. required MaskingOption show,
  2. required AnimationController controller,
  3. MaskingOption? next,
  4. double? opacity,
  5. Key? key,
})

Implementation

const MaskingStack({
  required this.show,
  required this.controller,
  this.next,
  this.opacity,
  super.key,
});