resolve method
Implementation
@override
BoxSpec resolve(MixData mix) {
return BoxSpec(
alignment: alignment,
padding: padding?.resolve(mix),
margin: margin?.resolve(mix),
constraints: constraints?.resolve(mix),
decoration: decoration?.resolve(mix),
foregroundDecoration: foregroundDecoration?.resolve(mix),
transform: transform,
transformAlignment: transformAlignment,
clipBehavior: clipBehavior,
width: width,
height: height,
animated: animated?.resolve(mix),
);
}