sliders static method

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

regular: sliders thin: sliders light: sliders bold: sliders fill: sliders duotone: sliders

Implementation

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