RemoteFunctionWithoutParameter<T> constructor

RemoteFunctionWithoutParameter<T>(
  1. FutureHandler futuresHandler,
  2. StreamController<DataPackage> outputController,
  3. RemoteFunctionIdentifier remoteFunctionIdentifier,
  4. T returnType,
)

Implementation

RemoteFunctionWithoutParameter(
    FutureHandler futuresHandler,
    StreamController<DataPackage> outputController,
    RemoteFunctionIdentifier remoteFunctionIdentifier,
    T returnType
) : super(
        futuresHandler, outputController,
        remoteFunctionIdentifier, returnType, []
)
{
}