numberSquareSix static method

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

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

Implementation

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