insertRow method

Future<PasskeyChallenge> insertRow(
  1. DatabaseSession session,
  2. PasskeyChallenge row, {
  3. Transaction? transaction,
})

Inserts a single PasskeyChallenge and returns the inserted row.

The returned PasskeyChallenge will have its id field set.

Implementation

Future<PasskeyChallenge> insertRow(
  _i1.DatabaseSession session,
  PasskeyChallenge row, {
  _i1.Transaction? transaction,
}) async {
  return session.db.insertRow<PasskeyChallenge>(
    row,
    transaction: transaction,
  );
}