fromJSON method
Restores this instance from the given JSON object.
Implementation
@override
ArriveBehavior fromJSON(Map<String,dynamic> json ) {
super.fromJSON( json );
target.fromArray( json['target'] );
deceleration = json['deceleration'];
return this;
}