tidalLogo static method

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

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

Implementation

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