getLatLong method

Future<Float64List?> getLatLong()

Gets the latitude and longitude values.

If there are valid latitude and longitude values in the image, this method returns a double array where the first element is the latitude and the second element is the longitude. Otherwise, it returns null.

Implementation

Future<Float64List?> getLatLong() =>
    channel.invokeMethod<Float64List>("getLatLong");