Checks if the location data is recent (within a specified threshold)
bool isRecent({Duration threshold = const Duration(minutes: 2)}) { return getAge() <= threshold; }