googleLogo static method

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

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

Implementation

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