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