windowsLogo static method

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

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

Implementation

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