personSimple static method

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

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

Implementation

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