AnimatedOverlay constructor

const AnimatedOverlay({
  1. Key? key,
  2. required BoxConstraints constraints,
  3. required bool show,
  4. Color color = const Color(0x66000000),
})

Implementation

const AnimatedOverlay({
  Key? key,
  required this.constraints,
  required this.show,
  this.color = const Color(0x66000000),
}) : super(key: key);