headphones static method

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

regular: headphones thin: headphones light: headphones bold: headphones fill: headphones duotone: headphones

Implementation

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