requestMyLocationLatLng method

Future<LatLng?> requestMyLocationLatLng()

Get last my location

Return last latlng, nullable

Implementation

Future<LatLng?> requestMyLocationLatLng() async {
  if (_disposed) {
    return null;
  }
  try {
    return await _nbMapsGlPlatform.requestMyLocationLatLng();
  } catch (e) {
    if (kDebugMode) {
      print(e);
    }
    return Future.error(e);
  }
}