gitCommit static method

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

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

Implementation

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