personSimpleCircle static method

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

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

Implementation

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