name property

String name

Implementation

String get name {
  switch (this) {
    case VAlign.center:
      return 'center';
    case VAlign.bottom:
      return 'bottom';
    case VAlign.top:
      return 'top';
  }
}