ZetaStatusLabel constructor

const ZetaStatusLabel({
  1. Key? key,
  2. bool? rounded,
  3. required String label,
  4. ZetaWidgetStatus status = ZetaWidgetStatus.info,
  5. IconData? customIcon,
  6. String? semanticLabel,
})

Constructs ZetaStatusLabel.

Implementation

const ZetaStatusLabel({
  super.key,
  super.rounded,
  required this.label,
  this.status = ZetaWidgetStatus.info,
  this.customIcon,
  this.semanticLabel,
});