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,
}) async {
await _call(BasaltExtension.updateRow, {
'id': id,
'table': table,
'key': jsonEncode(key),
'changes': jsonEncode(changes),
});
}