ModalHeader constructor

const ModalHeader({
  1. Key? key,
  2. VoidCallback? onClose,
  3. VoidCallback? onBack,
  4. bool showBackButton = false,
  5. bool isDark = false,
  6. String? title,
})

Implementation

const ModalHeader({
  Key? key,
  this.onClose,
  this.onBack,
  this.showBackButton = false,
  this.isDark = false,
  this.title,
}) : super(key: key);