windowsLogo static method
regular:
thin:
light:
bold:
fill:
duotone:
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;
}
}