resolve method
Resolves to TextHeightBehavior.
Implementation
@override
TextHeightBehavior resolve(BuildContext context) {
return TextHeightBehavior(
applyHeightToFirstAscent:
MixOps.resolve(context, $applyHeightToFirstAscent) ?? true,
applyHeightToLastDescent:
MixOps.resolve(context, $applyHeightToLastDescent) ?? true,
leadingDistribution:
MixOps.resolve(context, $leadingDistribution) ?? .proportional,
);
}