threadsLogo static method

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

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

Implementation

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