Alert constructor

const Alert({
  1. Key? key,
  2. required String text,
  3. required MaterialColor color,
  4. double? width,
  5. double? height,
})

Implementation

const Alert({
  super.key,
  required this.text,
  required this.color,
  this.width,
  this.height,
});