Alert constructor
const
Alert({
- Key? key,
- required String text,
- required MaterialColor color,
- double? width,
- double? height,
Implementation
const Alert({
super.key,
required this.text,
required this.color,
this.width,
this.height,
});