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