fromJSON method

  1. @override
LeftShoulderFuzzySet fromJSON(
  1. Map<String, dynamic> json
)
override

Restores this instance from the given JSON object.

Implementation

@override
LeftShoulderFuzzySet fromJSON(Map<String,dynamic> json ) {
	super.fromJSON( json );
	midpoint = json['midpoint'];
	return this;
}