spotifyLogo static method

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

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

Implementation

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