numberThree static method

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

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

Implementation

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