baseballHelmet static method

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

regular: baseball-helmet thin: baseball-helmet light: baseball-helmet bold: baseball-helmet fill: baseball-helmet duotone: baseball-helmet

Implementation

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