gitPullRequest static method

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

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 PhosphorIconData gitPullRequest(
    [PhosphorIconsStyle style = PhosphorIconsStyle.regular]) {
  switch (style) {
    case PhosphorIconsStyle.regular:
      return PhosphorIconsRegular.gitPullRequest;
    case PhosphorIconsStyle.thin:
      return PhosphorIconsThin.gitPullRequest;
    case PhosphorIconsStyle.light:
      return PhosphorIconsLight.gitPullRequest;
    case PhosphorIconsStyle.bold:
      return PhosphorIconsBold.gitPullRequest;
    case PhosphorIconsStyle.fill:
      return PhosphorIconsFill.gitPullRequest;
    case PhosphorIconsStyle.duotone:
      return PhosphorIconsDuotone.gitPullRequest;
  }
}