speakerSimpleLow static method

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

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

Implementation

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