windmill static method
regular:
thin:
light:
bold:
fill:
duotone:
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;
}
}