microphoneSlash static method

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

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

Implementation

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