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