soundcloudLogo static method

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

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

Implementation

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