microphoneStage static method

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

regular: microphone-stage thin: microphone-stage light: microphone-stage bold: microphone-stage fill: microphone-stage duotone: microphone-stage

Implementation

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