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