spiral static method

PhosphorIconData spiral([
  1. PhosphorIconsStyle style = PhosphorIconsStyle.regular
])

regular: spiral thin: spiral light: spiral bold: spiral fill: spiral duotone: spiral

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;
  }
}