youtubeLogo static method

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

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

Implementation

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