gitFork property

AppIconData get gitFork

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

Implementation

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