numberOne static method

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

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

Implementation

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