OudsInlineAlert constructor

const OudsInlineAlert({
  1. Key? key,
  2. required String label,
  3. OudsIconStatus status = const Neutral(),
})

Creates an OudsInlineAlert.

Implementation

const OudsInlineAlert({
  super.key,
  required this.label,
  this.status = const Neutral(),
});