ZetaIndicator constructor

const ZetaIndicator({
  1. Key? key,
  2. bool? rounded,
  3. ZetaIndicatorType type = ZetaIndicatorType.notification,
  4. ZetaWidgetSize size = ZetaWidgetSize.large,
  5. IconData? icon,
  6. int? value,
  7. bool inverse = false,
  8. Color? color,
  9. String? semanticLabel,
})

Constructor for ZetaIndicator.

Implementation

const ZetaIndicator({
  super.key,
  super.rounded,
  this.type = ZetaIndicatorType.notification,
  this.size = ZetaWidgetSize.large,
  this.icon,
  this.value,
  this.inverse = false,
  this.color,
  this.semanticLabel,
});