ZetaLabel constructor

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

Constructs ZetaLabel.

Implementation

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