setIosCamera method
Sets iOS camera with position
and type
.
Implementation
Future<void> setIosCamera({
required IosCameraPosition position,
required IosCameraType type,
}) {
return _channel.invokeMethod(_setIosCamera, {
'position': position.code,
'type': type.code,
});
}