automatedZoomLimit property

num? get automatedZoomLimit

Get the automated zoom limit

Implementation

num? get automatedZoomLimit => _automatedZoomLimit;
set automatedZoomLimit (num? limit)

Set the automated zoom limit

Implementation

set automatedZoomLimit(num? limit) {
  _automatedZoomLimit = limit;
  UtilPlatform.instance.setAutomatedZoomLimit(limit);
}