baseline property

  1. @override
double? get baseline
override

Distance from the top of this box to the alphabetic baseline, if any.

Implementation

@override
double? get baseline =>
    baselineOverride ??
    (child?.baseline == null ? null : child!.baseline! + childOffset.dy);