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