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