update method

Future<List<LogEntry>> update(
  1. DatabaseAccessor databaseAccessor,
  2. List<LogEntry> rows, {
  3. ColumnSelections<LogEntryTable>? columns,
  4. 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,
  );
}