diceOne property

AppIconData get diceOne

regular: dice-one thin: dice-one light: dice-one bold: dice-one fill: dice-one duotone: dice-one

Implementation

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