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