waveform static method

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

regular: waveform thin: waveform light: waveform bold: waveform fill: waveform duotone: waveform

Implementation

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