callFunction abstract method
Calls the specified function
on the Moodle-API with the specified token
.
Note: The token
must have the required permissions use the web service that is providing the function you are trying to call.
If redact
is set to true, the response/request body will not be logged.
Implementation
Future<HttpResponse<Either<List<JSON>, JSON>>> callFunction({
required String function,
required String token,
required JSON body,
bool redact = false,
});