AFLocation
Snapshot of the device's location captured by the SDK's location ping.
The ping fires once per AFCore.initialize() when location permission has already been granted. The SDK first attempts a fresh GPS fix; on timeout or provider failure it falls back to the platform's last-known location. Either way the result is persisted and retrievable via AFCore.getLastKnownLocation().
Use isFresh to distinguish a just-acquired fix from an older cached one, and ageMillis to decide whether the cached value is still useful for your UI.
Constructors
Properties
Estimated horizontal accuracy of the fix in meters, or null if the platform did not report one. Smaller is better; values above ~100m usually indicate a coarse / cell-tower fix.
When the fix was acquired by the platform, in milliseconds since the Unix epoch. For isFresh = true this is roughly now; for last-known fallbacks it can be hours or days old (see ageMillis).