isZoomEnabled property

bool isZoomEnabled

Determines whether zooming is enabled.

Implementation

bool get isZoomEnabled => _isZoomEnabled;
void isZoomEnabled=(bool newValue)

Implementation

set isZoomEnabled(bool newValue) {
  if (newValue != _isZoomEnabled) {
    _isZoomEnabled = newValue;
    _webViewController.enableZoom(newValue);
    notifyListeners();
  }
}