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