OudsAlertMessage constructor

const OudsAlertMessage({
  1. Key? key,
  2. required String label,
  3. required OudsIconStatus? status,
  4. String? description,
  5. VoidCallback? onClose,
  6. OudsAlertMessageActionLayout? actionLayout,
  7. List<String>? bulletList,
})

Creates an OudsAlertMessage.

Implementation

const OudsAlertMessage({
  super.key,
  required this.label,
  required this.status,
  this.description,
  this.onClose,
  this.actionLayout,
  this.bulletList,
});