supersetOf static method

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

regular: superset-of thin: superset-of light: superset-of bold: superset-of fill: superset-of duotone: superset-of

Implementation

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