删除一个数据, 通过rowid
table 表名 rowid 行ID
table
rowid
返回删除的行数
Future deleteById({required String table, required int rowid}) async { return deleteLine('delete from $table where rowid=$rowid'); }