updateRecord method
Implementation
@override
Future<void> updateRecord(
String tableName,
dynamic id,
Map<String, dynamic> data,
) async {
final accessor = accessors[tableName];
if (accessor == null) {
throw Exception('Collection $tableName not found in accessors.');
}
await accessor.putRecord(data);
}