mouseScroll static method

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

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

Implementation

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