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