CustomDialogWidget constructor

const CustomDialogWidget({
  1. Key? key,
  2. required String title,
  3. bool? iconTitle = false,
  4. String? content,
  5. Widget? widgets,
  6. bool? canGoBack = true,
  7. double? insetPadding,
  8. TextStyle? titleStyle,
  9. double? radius,
  10. double? width,
  11. TextStyle? contentStyle,
  12. double? contentToButtonGap,
  13. double? titleToContentGap,
  14. double? topToTitleGap,
  15. double? buttonToBottomGap,
  16. Color? primaryColor,
  17. Color? defaultButtonTextColor,
})

Implementation

const CustomDialogWidget(
    {Key? key,
    required this.title,
    this.iconTitle = false,
    this.content,
    this.widgets,
    this.canGoBack = true,
    this.insetPadding,
    this.titleStyle,
    this.radius,
    this.width,
    this.contentStyle,
    this.contentToButtonGap,
    this.titleToContentGap,
    this.topToTitleGap,
    this.buttonToBottomGap,
    this.primaryColor,
    this.defaultButtonTextColor})
    : super(key: key);