fan static method

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

regular: fan thin: fan light: fan bold: fan fill: fan duotone: fan

Implementation

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