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