delete method
Future<List<SessionLogEntry> >
delete(
- Session session,
- List<
SessionLogEntry> rows, { - Transaction? transaction,
Implementation
Future<List<SessionLogEntry>> delete(
_i1.Session session,
List<SessionLogEntry> rows, {
_i1.Transaction? transaction,
}) async {
return session.db.delete<SessionLogEntry>(
rows,
transaction: transaction ?? session.transaction,
);
}