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