mirror of
https://github.com/pese-git/cherrypick.git
synced 2026-01-23 21:13:35 +00:00
- Add an explicit note and warning about the effect (or lack thereof) of calling `.singleton()` after `.toInstance()`: - in singleton() API doc-comment in binding.dart, - in README.md (after all binding usage patterns), - in full_tutorial_en.md and full_tutorial_ru.md. - Explain that `.singleton()` has no effect on objects registered with `.toInstance()` — they are always single instance. - Recommend `.singleton()` only for providers (toProvide/toProvideAsync), not direct instances. - Improves clarity and prevents misuse/confusion for end users and future maintainers.