diceFive static method

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

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

Implementation

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