diceThree static method

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

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

Implementation

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