callFunction abstract method

Future<HttpResponse<Either<List<JSON>, JSON>>> callFunction(
  1. {required String function,
  2. required String token,
  3. required JSON body,
  4. bool redact = false}
)

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