personSimpleThrow static method

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

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

Implementation

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