googlePlayLogo static method

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

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

Implementation

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