gitBranch property

AppIconData get gitBranch

regular: git-branch thin: git-branch light: git-branch bold: git-branch fill: git-branch duotone: git-branch

Implementation

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