AFGeo Location
class AFGeoLocation(val latitude: Double? = null, val longitude: Double? = null, val accuracy: Float? = null, val timestampMillis: Long? = null)
Platform-agnostic representation of location.
This data class encapsulates geographical coordinates (latitude and longitude) along with optional information about accuracy and the timestamp when the location was recorded. It can be populated from platform-specific location objects like CLLocation (iOS) or android.location.Location (Android).