resolve method
Implementation
@override
ImageSpec resolve(MixData mix) {
return ImageSpec.exhaustive(
width: width,
height: height,
color: color?.resolve(mix),
repeat: repeat,
fit: fit,
alignment: alignment,
centerSlice: centerSlice,
filterQuality: filterQuality,
colorBlendMode: colorBlendMode,
animated: animated?.resolve(mix) ?? mix.animation,
);
}