speakerSimpleHigh static method

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

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

Implementation

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