fromJSON method

  1. @override
RectangularTriggerRegion fromJSON(
  1. Map<String, dynamic> json
)
override

Restores this instance from the given JSON object.

Implementation

@override
RectangularTriggerRegion fromJSON(Map<String,dynamic> json ) {
	super.fromJSON( json );
	size.fromArray( json['size'] );
	return this;
}