BlendMask constructor

BlendMask({
  1. required BlendMode blendMode,
  2. double opacity = 1.0,
  3. Rect? region,
  4. Key? key,
  5. required Widget child,
})

Implementation

BlendMask(
    {required this.blendMode,
    this.opacity = 1.0,
    this.region,
    Key? key,
    required Widget child})
    : super(key: key, child: child);