cloudCheck property

AppIconData get cloudCheck

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

Implementation

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