numberNine static method

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

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

Implementation

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