clearCachedLocations method
Delete all cached location records from local storage.
Implementation
Future<bool> clearCachedLocations() async {
try {
return await _platform.clearCachedLocations();
} catch (e) {
debugPrint('Failed to clearCachedLocations: $e');
return false;
}
}