fromJson method

Curve fromJson(
  1. Map<String, dynamic> json
)

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

Implementation

Curve fromJson(Map<String,dynamic> json) {
  arcLengthDivisions = json['arcLengthDivisions'];

  return this;
}