numberSquareThree static method

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

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

Implementation

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