You are using strings for names, rather than Symbol.
I'm not unsympathetic to that, symbols are more trouble than they are usually worth, but it can cause issues for dart2js minification.
It also means that library private names are simply strings starting with _, which is ... all in all, probably an advantage.
I'd love to be rid of Symbol, but it does have a valid use in web minification.
You are using strings for names, rather than
Symbol.I'm not unsympathetic to that, symbols are more trouble than they are usually worth, but it can cause issues for dart2js minification.
It also means that library private names are simply strings starting with
_, which is ... all in all, probably an advantage.I'd love to be rid of
Symbol, but it does have a valid use in web minification.