checkFat property

AppIconData get checkFat

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

Implementation

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