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