googleChromeLogo static method

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

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

Implementation

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