person static method

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

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

Implementation

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