insertRow method
Future<FutureCallClaimEntry>
insertRow(
- DatabaseSession session,
- FutureCallClaimEntry row, {
- Transaction? transaction,
Inserts a single FutureCallClaimEntry and returns the inserted row.
The returned FutureCallClaimEntry will have its id field set.
Implementation
Future<FutureCallClaimEntry> insertRow(
_is.DatabaseSession session,
FutureCallClaimEntry row, {
_is.Transaction? transaction,
}) async {
return session.db.insertRow<FutureCallClaimEntry>(
row,
transaction: transaction,
);
}