calculateBaseline method
Implementation
@override
void calculateBaseline() {
// MVP baseline behavior: use the bottom border edge as baseline when inline-level.
// For block-level grid containers, baseline is generally not used; we still cache
// a reasonable value to satisfy callers.
final double baseline = boxSize?.height ?? size.height;
setCssBaselines(first: baseline, last: baseline);
}