numberCircleThree static method

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

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

Implementation

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