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