ModalBaseHeaderParameter constructor

ModalBaseHeaderParameter({
  1. required Color background,
  2. required Color headerBackground,
  3. required Color dragBar,
  4. required Widget closeIcon,
  5. Color? closeIconColor,
  6. Widget? title,
})

Implementation

ModalBaseHeaderParameter({
  required this.background,
  required this.headerBackground,
  required this.dragBar,
  required this.closeIcon,
  this.closeIconColor,
  this.title,
});