genderNonbinary static method

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

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

Implementation

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