guitar static method

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

regular: guitar thin: guitar light: guitar bold: guitar fill: guitar duotone: guitar

Implementation

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