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