check property

AppIconData get check

regular: check thin: check light: check bold: check fill: check duotone: check

Implementation

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