clearCachedLocations method

Future<bool> clearCachedLocations()

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;
  }
}