exclude property

AppIconData get exclude

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

Implementation

static AppIconData get exclude {
  switch (AppIcons.defaultStyle) {
    case AppIconsStyle.regular:
      return AppIconsRegular.exclude;
    case AppIconsStyle.thin:
      return AppIconsThin.exclude;
    case AppIconsStyle.light:
      return AppIconsLight.exclude;
    case AppIconsStyle.bold:
      return AppIconsBold.exclude;
    case AppIconsStyle.fill:
      return AppIconsFill.exclude;
    case AppIconsStyle.duotone:
      return AppIconsDuotone.exclude;
  }
}