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