supersetProperOf static method

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

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

Implementation

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