dart_functional_data
dart_functional_data copied to clipboard
Could the generated class keep private with the original class?
The original class _ViewModel is private, but the generated class is $_ViewModel, which is not private. It lead to name conflict when export multiple modules that have the same class _ViewModel, but this should be ok.
Probably all generated $Foo classes should be private as they are only supposed to be used by Foo.
This change would be backwards-incompatible.
All generated symbols are now private.