getPage method

Future<Map> getPage({
  1. required String path,
  2. bool return_content = true,
  3. Client? httpClient,
})

Implementation

Future<Map> getPage({
  required String path,
  bool return_content = true,
  Client? httpClient,
}) async {
  Map parameters = {
    "return_content": return_content,
  };

  Map result = await invoke(
    method: "getPage",
    parameters: parameters,
    path_api: path,
    httpClient: httpClient,
  );
  return result;
}