speakerNone static method

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

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

Implementation

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