update method

Future<List<GoogleRefreshToken>> update(
  1. Session session,
  2. List<GoogleRefreshToken> rows, {
  3. ColumnSelections<GoogleRefreshTokenTable>? columns,
  4. Transaction? transaction,
})

Implementation

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