isZoomEnabled property

bool? isZoomEnabled

If it's set to true, allows you to adjust a zoom level using the pinch gesture (its range is from 1x to 10x).

Default: false.

Implementation

bool? get isZoomEnabled => _isZoomEnabled;
void isZoomEnabled=(bool? val)

Implementation

set isZoomEnabled(bool? val) {
  _isZoomEnabled = val;
  _set({"isZoomEnabled": val});
}