updateRow method
Future<SessionLogEntry>
updateRow(
- Session session,
- SessionLogEntry row, {
- ColumnSelections<
SessionLogEntryTable> ? columns, - Transaction? transaction,
Implementation
Future<SessionLogEntry> updateRow(
_i1.Session session,
SessionLogEntry row, {
_i1.ColumnSelections<SessionLogEntryTable>? columns,
_i1.Transaction? transaction,
}) async {
return session.db.updateRow<SessionLogEntry>(
row,
columns: columns?.call(SessionLogEntry.t),
transaction: transaction,
);
}