fromJSON method
Restores this instance from the given JSON object.
Implementation
BoundingSphere fromJSON(Map<String,dynamic> json ) {
center.fromArray( json['center'] );
radius = json['radius'];
return this;
}
Restores this instance from the given JSON object.
BoundingSphere fromJSON(Map<String,dynamic> json ) {
center.fromArray( json['center'] );
radius = json['radius'];
return this;
}