personSimpleSwim static method

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

regular: person-simple-swim thin: person-simple-swim light: person-simple-swim bold: person-simple-swim fill: person-simple-swim duotone: person-simple-swim

Implementation

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