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