BoxAlert constructor

const BoxAlert(
  1. {Key? key,
  2. String? text,
  3. Color color = Colors.redAccent,
  4. EdgeInsets padding = const EdgeInsets.only(top: 20),
  5. required bool visible}
)

Implementation

const BoxAlert({
  super.key,
  this.text,
  this.color = Colors.redAccent,
  this.padding = const EdgeInsets.only(top: 20),
  required this.visible,
});