fromJSON method

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

Restores this instance from the given JSON object.

Implementation

Goal fromJSON(Map<String,dynamic> json ) {
	owner = json['owner']; // uuid
	status = json['status'];
	return this;
}