fromJson method

  1. @override
QuadraticBezierCurve3 fromJson(
  1. Map<String, dynamic> json
)
override

Copies the data from the given JSON object to this instance.

Implementation

@override
QuadraticBezierCurve3 fromJson(Map<String,dynamic> json ) {
  super.fromJson(json);
  v0.copyFromArray( json['v0'] );
  v1.copyFromArray( json['v1'] );
  v2.copyFromArray( json['v2'] );

  return this;
}