personSimpleBike static method

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

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

Implementation

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