waveSawtooth static method

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

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

Implementation

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