callServerEndpoint<T> method
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,
);
}