geolocation property
Object?
get
geolocation
Returns Vercel geolocation data for the current request, when available.
Implementation
Object? get geolocation {
final request = _request;
if (request == null) {
return null;
}
return vercelGeolocation(_helpers, request);
}