windmill static method

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

regular: windmill thin: windmill light: windmill bold: windmill fill: windmill duotone: windmill

Implementation

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