isZoomEnabled property
bool?
get
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;
set
isZoomEnabled
(bool? val)
Implementation
set isZoomEnabled(bool? val) {
_isZoomEnabled = val;
_set({"isZoomEnabled": val});
}