cake property

AppIconData get cake

regular: cake thin: cake light: cake bold: cake fill: cake duotone: cake

Implementation

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