notSupersetOf static method

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

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

Implementation

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