personSimpleWalk static method

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

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

Implementation

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