fromJson method
Copies the data from the given JSON object to this instance.
Implementation
@override
CubicBezierCurve3 fromJson(Map<String,dynamic> json ) {
super.fromJson(json);
v0.copyFromArray( json['v0'] );
v1.copyFromArray( json['v1'] );
v2.copyFromArray( json['v2'] );
v3.copyFromArray( json['v3'] );
return this;
}