SFAlertDialog constructor
const
SFAlertDialog({
- Key? key,
- double? top,
- double? left,
- double? right,
- double? height,
- double? titleAndContentsSpacing,
- required String title,
- Widget? titleLeading,
- Widget? closeWidget,
- TextStyle? titleTextStyle,
- required String content,
- EdgeInsets? padding,
- TextStyle? contentTextStyle,
- Color? backgroundColor,
- Color? borderColor,
- BorderRadius? borderRadius,
- required VoidCallback remove,
- String? acceptButtonText,
- String? cancleButtonText,
- VoidCallback? onAccept,
- VoidCallback? onCancle,
Implementation
const SFAlertDialog({
Key? key,
this.top,
this.left,
this.right,
this.height,
this.titleAndContentsSpacing,
required this.title,
this.titleLeading,
this.closeWidget,
this.titleTextStyle,
required this.content,
this.padding,
this.contentTextStyle,
this.backgroundColor,
this.borderColor,
this.borderRadius,
required this.remove,
this.acceptButtonText,
this.cancleButtonText,
this.onAccept,
this.onCancle,
}) : super(key: key);