githubLogo static method

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

regular: github-logo thin: github-logo light: github-logo bold: github-logo fill: github-logo duotone: github-logo

Implementation

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