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(
_i1.DatabaseSession session,
FutureCallClaimEntry row, {
_i1.Transaction? transaction,
}) async {
return session.db.insertRow<FutureCallClaimEntry>(
row,
transaction: transaction,
);
}