clearLocations method

Future<void> clearLocations()

Implementation

Future<void> clearLocations() async {
  final db = await database;
  await db.delete('locations');
}