scroll static method

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

regular: scroll thin: scroll light: scroll bold: scroll fill: scroll duotone: scroll

Implementation

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