resolve method

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

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