alignBaseline method
Aligns the baseline of the element with the baseline of its parent.
Matches Bootstrap's .align-baseline class.
Implementation
WidgetSpan alignBaseline({TextBaseline baseline = TextBaseline.alphabetic}) =>
WidgetSpan(
alignment: PlaceholderAlignment.baseline,
baseline: baseline,
child: this,
);