camera property
Get the camera
Returns
- MapCamera future object
Throws
- An exception if it fails.
Implementation
MapCamera get camera {
final OperationResult resultString = objectMethod(
_pointerId,
'MapView',
'getCamera',
);
return MapCamera.init(resultString['result'], _mapId);
}