ModalLayout constructor

const ModalLayout({
  1. Key? key,
  2. required Widget body,
  3. EdgeInsetsGeometry padding = const EdgeInsets.only(left: 20, right: 20, top: 20),
  4. Color backgroundColor = Colors.grey,
  5. bool showCloseButton = true,
})

Implementation

const ModalLayout({
  super.key,
  required this.body,
  this.padding = const EdgeInsets.only(left: 20, right: 20, top: 20),
  this.backgroundColor = Colors.grey,
  this.showCloseButton = true,
});