clockCountdown property

AppIconData get clockCountdown

regular: clock-countdown thin: clock-countdown light: clock-countdown bold: clock-countdown fill: clock-countdown duotone: clock-countdown

Implementation

static AppIconData get clockCountdown {
  switch (AppIcons.defaultStyle) {
    case AppIconsStyle.regular:
      return AppIconsRegular.clockCountdown;
    case AppIconsStyle.thin:
      return AppIconsThin.clockCountdown;
    case AppIconsStyle.light:
      return AppIconsLight.clockCountdown;
    case AppIconsStyle.bold:
      return AppIconsBold.clockCountdown;
    case AppIconsStyle.fill:
      return AppIconsFill.clockCountdown;
    case AppIconsStyle.duotone:
      return AppIconsDuotone.clockCountdown;
  }
}