ModalHeader constructor

const ModalHeader({
  1. Key? key,
  2. String? title,
  3. bool withBackButton = false,
  4. Widget? rightButton,
  5. double iconSize = 16,
  6. double sideMargin = 24,
})

Implementation

const ModalHeader({
  super.key,
  this.title,
  this.withBackButton = false,
  this.rightButton,
  this.iconSize = 16,
  this.sideMargin = 24,
});