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