insertRow method
Future<PasskeyChallenge>
insertRow(
- DatabaseSession session,
- PasskeyChallenge row, {
- 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,
);
}