defaultVerticalAlignment property Null safety
How cells that do not explicitly specify a vertical alignment are aligned vertically.
Implementation
TableCellVerticalAlignment get defaultVerticalAlignment => _defaultVerticalAlignment;
Implementation
set defaultVerticalAlignment(TableCellVerticalAlignment value) {
assert(value != null);
if (_defaultVerticalAlignment == value) {
return;
}
_defaultVerticalAlignment = value;
markNeedsLayout();
}