speakerLow static method

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

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

Implementation

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