deleteById method

Future<int> deleteById(
  1. int systemLogId
)

Implementation

Future<int> deleteById(int systemLogId) async {
  return await (db.delete(
    db.systemLog,
  )..where((e) => e.id.equals(systemLogId))).go();
}