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