numberTwo static method

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

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

Implementation

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