CLAIDModuleView constructor

CLAIDModuleView(
  1. String entityName,
  2. String mappedModuleId,
  3. String moduleClass,
  4. ModuleManager moduleManager, {
  5. 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);
}