resolve method
Implementation
@override
IconSpec resolve(MixData mix) {
return IconSpec.exhaustive(
color: color?.resolve(mix),
size: size,
weight: weight,
grade: grade,
opticalSize: opticalSize,
shadows: shadows?.map((e) => e.resolve(mix)).toList(),
textDirection: textDirection,
applyTextScaling: applyTextScaling,
fill: fill,
animated: animated?.resolve(mix) ?? mix.animation,
);
}