HTTP trigger Cloud Function in Flutter web
问题 I am trying to call a HTTP trigger Cloud Function from Flutter . I keep getting errors in the console while passing the parameters to the function. final HttpsCallable callable = CloudFunctions.instance.getHttpsCallable( functionName: 'hello_world', ); final HttpsCallableResult result = await callable.call( <String, dynamic>{ 'message': 'hello world!', }, ); Can someone point out what is it that I am doing wrong. The Cloud function used is def hello_world(request): request_json = request.get