CLAIDModuleView constructor
CLAIDModuleView(
- String entityName,
- String mappedModuleId,
- String moduleClass,
- ModuleManager moduleManager, {
- Key? key,
Implementation
CLAIDModuleView(this.entityName, this.mappedModuleId,
this.moduleClass, ModuleManager moduleManager, {Key? key}) : super(key: key)
{
print("initstate CLAIDModuleView constr ${mappedModuleId.length} $mappedModuleId $moduleClass");
this.remoteFunctionHandler = moduleManager.getRemoteFunctionHandler();
moduleManager.registerDataReceiverEntity(entityName, this.onDataFromLooseDirectSubscription);
}