speakerSimpleSlash static method

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

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

Implementation

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