googlePodcastsLogo static method

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

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

Implementation

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