cowboyHat static method

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

regular: cowboy-hat thin: cowboy-hat light: cowboy-hat bold: cowboy-hat fill: cowboy-hat duotone: cowboy-hat

Implementation

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