clear method

Future<void> clear()

Deletes all the IpGeoLocations stored in the database.

Implementation

Future<void> clear() async {
  data.clear();

  await safe((db) async {
    await db.delete(db.geoLocations).go();
  });
}