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