setZoomToFit method

Builder<T> setZoomToFit(
  1. bool doFit
)

Set whether the filtering is allowed to zoom the camera in/out

Implementation

Builder<T> setZoomToFit(bool doFit) {
  _zoomToFit = doFit;
  return this;
}