gitPullRequest property

AppIconData get gitPullRequest

regular: git-pull-request thin: git-pull-request light: git-pull-request bold: git-pull-request fill: git-pull-request duotone: git-pull-request

Implementation

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