ZetaLabel constructor

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

Constructs ZetaLabel.

Implementation

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