diceOne static method

PhosphorIconData diceOne([
  1. PhosphorIconsStyle style = PhosphorIconsStyle.regular
])

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

Implementation

static PhosphorIconData diceOne(
    [PhosphorIconsStyle style = PhosphorIconsStyle.regular]) {
  switch (style) {
    case PhosphorIconsStyle.regular:
      return PhosphorIconsRegular.diceOne;
    case PhosphorIconsStyle.thin:
      return PhosphorIconsThin.diceOne;
    case PhosphorIconsStyle.light:
      return PhosphorIconsLight.diceOne;
    case PhosphorIconsStyle.bold:
      return PhosphorIconsBold.diceOne;
    case PhosphorIconsStyle.fill:
      return PhosphorIconsFill.diceOne;
    case PhosphorIconsStyle.duotone:
      return PhosphorIconsDuotone.diceOne;
  }
}