resolve method

  1. @override
TextSpec resolve(
  1. MixData mix
)
override

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,
  );
}