cat property

AppIconData get cat

regular: cat thin: cat light: cat bold: cat fill: cat duotone: cat

Implementation

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