numberCircleTwo static method

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

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

Implementation

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