Future<int?> delete(int id) async { return await db?.delete(tableName, where: 'id = ?', whereArgs: [id]); }