numberEight static method

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

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

Implementation

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