waveformSlash static method

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

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

Implementation

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