I just want to know do we have any concept access specifiers like private property in QML as we have in C++.
If not if would like to know in case i have about 10 properties in my QML component but i have to limit the access to only 2 properties. how can we achieve this scenario.
There is no such builtin feature in QML itself, but here is Qt Quick Components approach:
Properties of 'internal' object are invisible outside of Item, but may be freely used inside of it.