MephistoPopupTitle constructor

const MephistoPopupTitle({
  1. Key? key,
  2. required String title,
  3. Function? onClose,
  4. Widget? prefixWidget,
  5. EdgeInsets? edgeInsets = const EdgeInsets.all(0),
  6. double? height,
  7. Color? fillColor,
})

Implementation

const MephistoPopupTitle(
    {super.key,
    required this.title,
    this.onClose,
    this.prefixWidget,
    this.edgeInsets = const EdgeInsets.all(0),
    this.height,
    this.fillColor});