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