setZoomFactor method

Future<void> setZoomFactor(
  1. double zoomFactor
)

Sets the zoom factor.

Implementation

Future<void> setZoomFactor(double zoomFactor) async {
  if (_isDisposed) {
    return;
  }
  assert(value.isInitialized);
  return _methodChannel.invokeMethod('setZoomFactor', zoomFactor);
}