excludeSquare property

AppIconData get excludeSquare

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

Implementation

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