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