If I have a helper class defined in a library that I don't want to use outside the library, is the correct hiding mechanism for placing underscores in front of the class name?
part of foo;
class Bar { }
class _BarHelp { }
Or is there an alternative way to hide BarHelp?
Dejas source
share