InformationAlertDialog constructor

const InformationAlertDialog({
  1. Icon? iconTitle,
  2. String? title,
  3. required String message,
  4. List<Widget>? buttons,
})

Implementation

const InformationAlertDialog({
  this.iconTitle,
  this.title,
  required this.message,
  this.buttons,
}) : assert(iconTitle != null || title != null);