numberSquareOne static method

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

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

Implementation

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