twitterLogo static method

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

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

Implementation

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