import '../../location.dart'; abstract class LocationRepository { // Create Future createLocation(Location location); // Read Future> loadLocations(); // Update Future updateLocation(Location location); // Delete Future deleteLocation(Location location); }