personSimpleSki static method

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

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

Implementation

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