updateRow method
Future<ServerHealthConnectionInfo>
updateRow(
- Session session,
- ServerHealthConnectionInfo row, {
- ColumnSelections<
ServerHealthConnectionInfoTable> ? columns, - Transaction? transaction,
Implementation
Future<ServerHealthConnectionInfo> updateRow(
_i1.Session session,
ServerHealthConnectionInfo row, {
_i1.ColumnSelections<ServerHealthConnectionInfoTable>? columns,
_i1.Transaction? transaction,
}) async {
return session.db.updateRow<ServerHealthConnectionInfo>(
row,
columns: columns?.call(ServerHealthConnectionInfo.t),
transaction: transaction,
);
}