genderFemale static method

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

regular: gender-female thin: gender-female light: gender-female bold: gender-female fill: gender-female duotone: gender-female

Implementation

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