GNCustomPopUpDialog constructor

const GNCustomPopUpDialog({
  1. Key? key,
  2. required String? title,
  3. String? subTitle,
  4. required List<Widget> content,
  5. String? fontFamily,
  6. bool? showCloseIcon = true,
  7. FontStyle? fontStyle,
  8. Color? fontcolor,
  9. TextAlign? align,
  10. double? fontsize,
  11. Widget? endWidget,
  12. Widget? titleWidget,
  13. double? borderRadius,
})

Implementation

const GNCustomPopUpDialog({
  super.key,
  required this.title,
  this.subTitle,
  required this.content,
  this.fontFamily,
  this.showCloseIcon = true,
  this.fontStyle,
  this.fontcolor,
  this.align,
  this.fontsize,
  this.endWidget,
  this.titleWidget,
  this.borderRadius,
});