ZetaIndicator constructor

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

Constructor for ZetaIndicator.

Implementation

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