wechatLogo static method

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

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

Implementation

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