If aligning items according to their baseline, which baseline to use.
Source
TextBaseline get textBaseline => _textBaseline;
Source
set textBaseline (TextBaseline value) {
if (_textBaseline != value) {
_textBaseline = value;
markNeedsLayout();
}
}