The type of baseline to use for positioning the child.
Source
TextBaseline get baselineType => _baselineType;
Source
set baselineType (TextBaseline value) {
assert(value != null);
if (_baselineType == value)
return;
_baselineType = value;
markNeedsLayout();
}