genderMale static method

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

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

Implementation

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