ZetaStatusLabel constructor

const ZetaStatusLabel({
  1. Key? key,
  2. bool? rounded,
  3. required String label,
  4. ZetaWidgetStatus status = ZetaWidgetStatus.info,
  5. IconData? icon,
  6. @Deprecated('Use icon instead of customIcon') IconData? customIcon,
  7. String? semanticLabel,
})

Constructs ZetaStatusLabel.

Implementation

const ZetaStatusLabel({
  super.key,
  super.rounded,
  required this.label,
  this.status = ZetaWidgetStatus.info,
  this.icon,
  @Deprecated('Use icon instead of customIcon') this.customIcon,
  this.semanticLabel,
});