setIosCamera method
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,
);
}