ADialogWidget constructor
const
ADialogWidget({
- Key? key,
- required DialogType type,
- Color? color,
- String? bigHeader,
- String? headerText,
- String? bodyText,
- String? buttonText,
- Widget? customDialog,
- double? height,
- double? width,
- String? okButtonText,
- Widget? cancelButtonWidget,
- Widget? centerBodyWidget,
- Widget? centerTitleWidget,
- Widget? okButtonWidget,
- Function? onCloseButtonPressed,
- Function? onOkButtonPressed,
Implementation
const ADialogWidget({
Key? key,
required this.type,
this.color,
this.bigHeader,
this.headerText,
this.bodyText,
this.buttonText,
this.customDialog,
this.height,
this.width,
this.okButtonText,
this.cancelButtonWidget,
this.centerBodyWidget,
this.centerTitleWidget,
this.okButtonWidget,
this.onCloseButtonPressed,
this.onOkButtonPressed,
}) : super(key: key);