AlertBox constructor
AlertBox({
- String? title,
- String? message,
- Widget? child,
- AlertVariant variant = AlertVariant.info,
- EdgeInsets? padding,
- EdgeInsets? margin,
- Border? border,
- List<
Widget> actions = const [], - Key? key,
Implementation
AlertBox({
this.title,
this.message,
this.child,
this.variant = AlertVariant.info,
this.padding,
this.margin,
this.border,
this.actions = const [],
super.key,
});