fromJSON method

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

Restores this instance from the given JSON object.

Implementation

Node fromJSON(Map<String,dynamic> json ) {
	index = json['index'];
	return this;
}