microphone static method

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

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

Implementation

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