androidLogo property

AppIconData get androidLogo

regular: android-logo thin: android-logo light: android-logo bold: android-logo fill: android-logo duotone: android-logo

Implementation

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