I have a question about internal access control level
Internal is default access control level in Swift
so I think all of internal access control should be removed
Is there a specific case of using internal access control explicitly in Swift?
When or How I use internal access control in Swift?
internalmarks the property available in the module only, it is really important when developing a library or framework – obviously it must not be removed.