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