baseline property Null safety
The number of logical pixels from the top of this box at which to position the child's baseline.
Implementation
double get baseline => _baseline;
Implementation
set baseline(double value) {
assert(value != null);
if (_baseline == value) {
return;
}
_baseline = value;
markNeedsLayout();
}