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