cameraPreviewVerticalPositionMultiplier property

double? get cameraPreviewVerticalPositionMultiplier

Allows you to change the vertical offset of the camera preview layer. If you need to raise the layer 50% of its height up, then you specify 0.5. If you need to lower the layer 75% of its height, then enter 1.75. Valid values: from 0 (the layer will be raised completely up) to 2 (the layer will be completely lowered down).

Implementation

double? get cameraPreviewVerticalPositionMultiplier =>
    _cameraPreviewVerticalPositionMultiplier;
set cameraPreviewVerticalPositionMultiplier (double? val)

Implementation

set cameraPreviewVerticalPositionMultiplier(double? val) {
  _cameraPreviewVerticalPositionMultiplier = val;
  _set({"cameraPreviewVerticalPositionMultiplier": val});
}