callServerEndpoint<T> method

  1. @override
Future<T> callServerEndpoint<T>(
  1. String endpoint,
  2. String method,
  3. Map<String, dynamic> args, {
  4. bool authenticated = true,
})
override

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

Implementation

@override
Future<T> callServerEndpoint<T>(
  String endpoint,
  String method,
  Map<String, dynamic> args, {
  bool authenticated = true,
}) {
  return client.callServerEndpoint<T>(
    endpoint,
    method,
    args,
    authenticated: authenticated,
  );
}