fromJSON method

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

Restores this instance from the given JSON object.

Implementation

AABB fromJSON(Map<String,dynamic> json ) {
	min.fromArray( json['min'] );
	max.fromArray( json['max'] );

	return this;
}