googlePhotosLogo static method

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

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

Implementation

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