chefHat static method

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

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

Implementation

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