textBaseline property Null safety
The text baseline to use when aligning rows using TableCellVerticalAlignment.baseline.
Implementation
TextBaseline? get textBaseline => _textBaseline;
Implementation
set textBaseline(TextBaseline? value) {
if (_textBaseline == value) {
return;
}
_textBaseline = value;
markNeedsLayout();
}