personSimpleHike static method

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

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

Implementation

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