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,
}) {
  return _channel.invokeMethod(_setIosCamera, {
    'position': position.code,
    'type': type.code,
  });
}