insert method

Future<List<GoogleRefreshToken>> insert(
  1. Session session,
  2. List<GoogleRefreshToken> rows, {
  3. Transaction? transaction,
})

Implementation

Future<List<GoogleRefreshToken>> insert(
  _i1.Session session,
  List<GoogleRefreshToken> rows, {
  _i1.Transaction? transaction,
}) async {
  return session.dbNext.insert<GoogleRefreshToken>(
    rows,
    transaction: transaction,
  );
}