Module.compose constructor
Creates a Module resulting in the merge of the given modules. You can also compose modules using Binder.install in your Module.configure.
Implementation
factory Module.compose(Iterable<Module> modules) {
return _ComposeModule(modules);
}