numberCircleFive static method

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

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

Implementation

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