clone method
dynamic
clone()
Implementation
clone() {
print("KeyframeTrack clone todo ");
// var times = AnimationUtils.arraySlice( this.times, 0, null );
// var values = AnimationUtils.arraySlice( this.values, 0, null );
// var TypedKeyframeTrack = this.constructor;
// var track = new TypedKeyframeTrack( this.name, times, values );
// // Interpolant argument to constructor is not saved, so copy the factory method directly.
// track.createInterpolant = this.createInterpolant;
// return track;
}