washingMachine static method

PhosphorIconData washingMachine([
  1. PhosphorIconsStyle style = PhosphorIconsStyle.regular
])

regular: washing-machine thin: washing-machine light: washing-machine bold: washing-machine fill: washing-machine duotone: washing-machine

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;
  }
}