resolve method
Implementation
@override
TextSpec resolve(MixData mix) {
return TextSpec.exhaustive(
overflow: overflow,
strutStyle: strutStyle?.resolve(mix),
textAlign: textAlign,
textScaleFactor: textScaleFactor,
maxLines: maxLines,
style: style?.resolve(mix),
textWidthBasis: textWidthBasis,
textHeightBehavior: textHeightBehavior,
textDirection: textDirection,
softWrap: softWrap,
directive: directive,
animated: animated?.resolve(mix) ?? mix.animation,
);
}