isCameraZoomSupported method

FutureOr<bool> isCameraZoomSupported()

@hidden(macOS) @detail api @brief Detects whether the currently used camera supports zoom (digital/optical zoom). @return - true: supports scaling - false: does not support scaling

Implementation

FutureOr<bool> isCameraZoomSupported() async {
  return await nativeCall('isCameraZoomSupported', []);
}