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