handSoap static method

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

regular: hand-soap thin: hand-soap light: hand-soap bold: hand-soap fill: hand-soap duotone: hand-soap

Implementation

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