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