genderIntersex static method

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

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

Implementation

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