speakerSimpleX static method

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

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

Implementation

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