fromJSON method

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

Restores this instance from the given JSON object.

Implementation

Cell fromJSON(Map<String,dynamic> json ) {
	aabb.fromJSON( json['aabb'] );
    entries.clear();
	entries.addAll(json['entries'].subList());

	return this;
}