numberSquareNine static method

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

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

Implementation

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