barbell static method

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

regular: barbell thin: barbell light: barbell bold: barbell fill: barbell duotone: barbell

Implementation

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