toFlutter method
Implementation
@override
TextHeightBehavior toFlutter(AnyWidgetContext config) {
return TextHeightBehavior(
applyHeightToFirstAscent: applyHeightToFirstAscent ?? true,
applyHeightToLastDescent: applyHeightToLastDescent ?? true,
leadingDistribution: leadingDistribution?.toFlutter(config) ??
TextLeadingDistribution.proportional,
);
}