lifebuoy static method

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

regular: lifebuoy thin: lifebuoy light: lifebuoy bold: lifebuoy fill: lifebuoy duotone: lifebuoy

Implementation

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