coordinatesForPixels method Null safety

Future<List<Map<String?, Object?>?>> coordinatesForPixels(
  1. List<ScreenCoordinate?> pixels
)

Calculates geographical coordinates (i.e., longitude-latitude pairs) that correspond to screen coordinates.

The screen coordinates are in logical pixels relative to the top left corner of the map (not of the whole screen).

Implementation

Future<List<Map<String?, Object?>?>> coordinatesForPixels(
        List<ScreenCoordinate?> pixels) =>
    _cameraManager.coordinatesForPixels(pixels);