clearAll method
Clears all CloudSyncable entities of type T
from the local repository.
Implementation
@override
Future<void> clearAll() async {
try {
final db = database;
await db.delete(tableName);
} on DatabaseException catch (e) {
_logger.e('Error clearing all items: $e');
rethrow;
}
}