appStoreLogo property

AppIconData get appStoreLogo

regular: app-store-logo thin: app-store-logo light: app-store-logo bold: app-store-logo fill: app-store-logo duotone: app-store-logo

Implementation

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