waveSquare static method

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

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

Implementation

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