ZetaIndicator.notification constructor

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

Constructor for ZetaIndicator of type ZetaIndicatorType.notification.

Implementation

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