yinYang static method

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

regular: yin-yang thin: yin-yang light: yin-yang bold: yin-yang fill: yin-yang duotone: yin-yang

Implementation

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