deleteLine method

Future deleteLine(
  1. String action, [
  2. List<Object?>? arguments
])

删除一个数据

action SQL删除语句 arguments 删除参数

Implementation

Future deleteLine(String action, [List<Object?>? arguments]) {
  return _dbInst.rawDelete(action, arguments);
}