diceTwo static method

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

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

Implementation

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