githubLogo property

AppIconData get githubLogo

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

Implementation

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