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