gitMerge static method

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

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

Implementation

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