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