cssText method
Implementation
String cssText() {
switch (this) {
case VerticalAlign.baseline:
return 'baseline';
case VerticalAlign.top:
return 'top';
case VerticalAlign.bottom:
return 'bottom';
case VerticalAlign.textBottom:
return 'text-bottom';
case VerticalAlign.middle:
return 'middle';
case VerticalAlign.textTop:
return 'text-top';
}
}