CustomAlertWidget constructor

const CustomAlertWidget({
  1. Key? key,
  2. required Widget widget,
  3. Color? backgroundColor,
})

Implementation

const CustomAlertWidget({
  super.key,
  required this.widget,
  this.backgroundColor,
});