getAddressListFromGeoCoordinates method

  1. @override
Future<List<Address?>> getAddressListFromGeoCoordinates(
  1. GeoCoordinates location
)

Implementation

@override
Future<List<Address?>> getAddressListFromGeoCoordinates(GeoCoordinates location) async {
  final result = await getAddressList(longitude: location.longitude, latitude: location.latitude);

  return result;
}