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