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