speakerSlash static method

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

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

Implementation

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