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