bathtub static method

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

regular: bathtub thin: bathtub light: bathtub bold: bathtub fill: bathtub duotone: bathtub

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