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