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