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