fromJSON method

FuzzyTerm fromJSON(
  1. Map<String, dynamic> json
)

Restores this instance from the given JSON object.

Implementation

FuzzyTerm fromJSON(Map<String,dynamic> json ) {
	_uuid = json['uuid'];
	return this;
}