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