double baseline

The number of logical pixels from the top of this box at which to position the child's baseline.

Source

double get baseline => _baseline;
void baseline=(double value)

Source

set baseline (double value) {
  assert(value != null);
  if (_baseline == value)
    return;
  _baseline = value;
  markNeedsLayout();
}