bracketsSquare static method

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

regular: brackets-square thin: brackets-square light: brackets-square bold: brackets-square fill: brackets-square duotone: brackets-square

Implementation

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