numberFive static method

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

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

Implementation

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