ZetaIndicator.notification constructor

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

Constructor for ZetaIndicator of type ZetaIndicatorType.notification.

Implementation

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