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