numberSix static method

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

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

Implementation

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