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