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