getMixingFrom method
The track entry for the previous animation when mixing from the previous animation to this animation, or NULL if no mixing is currently occuring. When mixing from multiple animations, MixingFrom makes up a double linked list with MixingTo.
Implementation
TrackEntry? getMixingFrom() {
final from = _bindings.spine_track_entry_get_mixing_from(_entry);
if (from.address == nullptr.address) return null;
return TrackEntry._(from, _state);
}