numberSquareEight static method

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

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

Implementation

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