personSimpleRun static method

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

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

Implementation

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