callServerEndpoint<T> abstract method

Future<T> callServerEndpoint<T>(
  1. String endpoint,
  2. String method,
  3. Map<String, dynamic> args
)

Calls a server endpoint method by its name, passing arguments in a map. Typically, this method is called by generated code.

Implementation

Future<T> callServerEndpoint<T>(
    String endpoint, String method, Map<String, dynamic> args);