resolve method
Implementation
@override
FlexSpec resolve(MixData mix) {
return FlexSpec.exhaustive(
crossAxisAlignment: crossAxisAlignment,
mainAxisAlignment: mainAxisAlignment,
mainAxisSize: mainAxisSize,
verticalDirection: verticalDirection,
direction: direction,
textDirection: textDirection,
textBaseline: textBaseline,
clipBehavior: clipBehavior,
gap: gap,
animated: animated?.resolve(mix) ?? mix.animation,
);
}