speakerX static method

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

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

Implementation

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