exclude static method

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

regular: exclude thin: exclude light: exclude bold: exclude fill: exclude duotone: exclude

Implementation

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