BoxAlert constructor
- {Key? key,
- String? text,
- Color color = Colors.redAccent,
- EdgeInsets padding = const EdgeInsets.only(top: 20),
- required bool visible}
Implementation
const BoxAlert({
super.key,
this.text,
this.color = Colors.redAccent,
this.padding = const EdgeInsets.only(top: 20),
required this.visible,
});