InfoAlert constructor

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

Implementation

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