merge method

MixData merge(
  1. MixData other
)

Implementation

MixData merge(MixData other) {
  return MixData._(
    resolver: _tokenResolver,
    attributes: _attributes.merge(other._attributes),
    animation: other.animation ?? animation,
  );
}