gitBranch static method

PhosphorIconData gitBranch([
  1. PhosphorIconsStyle style = PhosphorIconsStyle.regular
])

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

Implementation

static PhosphorIconData gitBranch(
    [PhosphorIconsStyle style = PhosphorIconsStyle.regular]) {
  switch (style) {
    case PhosphorIconsStyle.regular:
      return PhosphorIconsRegular.gitBranch;
    case PhosphorIconsStyle.thin:
      return PhosphorIconsThin.gitBranch;
    case PhosphorIconsStyle.light:
      return PhosphorIconsLight.gitBranch;
    case PhosphorIconsStyle.bold:
      return PhosphorIconsBold.gitBranch;
    case PhosphorIconsStyle.fill:
      return PhosphorIconsFill.gitBranch;
    case PhosphorIconsStyle.duotone:
      return PhosphorIconsDuotone.gitBranch;
  }
}