numberCircleNine static method

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

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

Implementation

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