flagCheckered property

AppIconData get flagCheckered

regular: flag-checkered thin: flag-checkered light: flag-checkered bold: flag-checkered fill: flag-checkered duotone: flag-checkered

Implementation

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