VgkAlertWidget constructor

VgkAlertWidget({
  1. required BuildContext context,
  2. AlertType? type,
  3. VgkAlertStyle style = const VgkAlertStyle(),
  4. Image? image,
  5. required String title,
  6. String? desc,
  7. Widget? content,
  8. List<VgkDialogButton>? buttons,
  9. Function? closeFunction,
})

Implementation

VgkAlertWidget({
  required this.context,
  this.type,
  this.style = const VgkAlertStyle(),
  this.image,
  required this.title,
  this.desc,
  this.content,
  this.buttons,
  this.closeFunction,
});