swimmingPool static method

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

regular: swimming-pool thin: swimming-pool light: swimming-pool bold: swimming-pool fill: swimming-pool duotone: swimming-pool

Implementation

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