baseline property

double get baseline

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

Implementation

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

Implementation

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