userSound static method

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

regular: user-sound thin: user-sound light: user-sound bold: user-sound fill: user-sound duotone: user-sound

Implementation

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