CustomDialogWidget constructor
const
CustomDialogWidget({
- Key? key,
- required String title,
- bool? iconTitle = false,
- String? content,
- Widget? widgets,
- bool? canGoBack = true,
- double? insetPadding,
- TextStyle? titleStyle,
- double? radius,
- double? width,
- TextStyle? contentStyle,
- double? contentToButtonGap,
- double? titleToContentGap,
- double? topToTitleGap,
- double? buttonToBottomGap,
- Color? primaryColor,
- 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);