mapModuleFunctionWithoutParameter<T> method

RemoteFunctionWithoutParameter<T> mapModuleFunctionWithoutParameter<T>(
  1. String targetModule,
  2. String functionName,
  3. T returnType
)

Implementation

RemoteFunctionWithoutParameter<T> mapModuleFunctionWithoutParameter<T>(String targetModule,
    String functionName, T returnType)
{
    RemoteFunctionWithoutParameter<T> function = RemoteFunctionWithoutParameter<T>(
        this._futuresHandler,
        this._outputController,
        makeRemoteModuleFunctionIdentifier(targetModule, functionName),
        returnType
    );
    return function;
}