twitchLogo static method

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

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

Implementation

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