callFunction abstract method

Future<Response> callFunction(
  1. String url, {
  2. Map<String, String?>? query,
  3. Map<String, dynamic>? jsonBody,
  4. String httpMethod = 'post',
})

Implementation

Future<http.Response> callFunction(
  String url, {
  Map<String, String?>? query,
  Map<String, dynamic>? jsonBody,
  String httpMethod = 'post',
});