setIosCamera method

Future<void> setIosCamera({
  1. required IosCameraPosition position,
  2. required IosCameraType type,
})

Sets iOS camera with position and type.

Implementation

Future<void> setIosCamera({
  required IosCameraPosition position,
  required IosCameraType type,
}) async {
  return await _barcodeScannerState?._setIosCamera(
    position: position,
    type: type,
  );
}