@Jan Schumacher I have a workaound, but it almost not the typical usage of data class. First, change super class, move the consturctor field to class properties, and make it mutable. Before:
After:
And child class remove override fields. Before:
After:
|