OverlayLayout constructor

const OverlayLayout({
  1. Key? key,
  2. required Widget child,
  3. dynamic onTap()?,
  4. Color backgroundColor = Colors.transparent,
  5. required OverlayLayoutTypeEnum type,
})

Implementation

const OverlayLayout({
  super.key,
  required this.child,
  this.onTap,
  this.backgroundColor = Colors.transparent,
  required this.type,
});