ModalPopupHeader constructor

const ModalPopupHeader({
  1. Key? key,
  2. String? text,
  3. void onBack()?,
  4. bool close = true,
  5. bool dense = false,
})

Implementation

const ModalPopupHeader({
  super.key,
  this.text,
  this.onBack,
  this.close = true,
  this.dense = false,
});