registerFutureCall method

void registerFutureCall(
  1. FutureCall<SerializableEntity> call,
  2. String name
)

Registers a FutureCall with the Serverpod and associates it with the specified name.

Implementation

void registerFutureCall(FutureCall call, String name) {
  _futureCallManager.registerFutureCall(call, name);
}