sliders static method
regular:
thin:
light:
bold:
fill:
duotone:
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;
}
}