numberSquareFive static method

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

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

Implementation

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