AFGeo Location
class AFGeoLocation(var latitude: Double? = null, var longitude: Double? = null, var 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).