resolve method

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

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