updateRow method
Updates a single row of table on instance id: changes where key.
Implementation
Future<void> updateRow(
String id, {
required String table,
required Map<String, Object?> key,
required Map<String, Object?> changes,
}) =>
RowUpdater(_connection(id)).update(
table: table,
key: key,
changes: changes,
);