numberCircleEight static method

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

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

Implementation

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