towel static method

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

regular: towel thin: towel light: towel bold: towel fill: towel duotone: towel

Implementation

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