alanstyong71
alanstyong71
Something like this: ``` class OutputAudio { ByteData _outputAudio; OutputAudio(String audio) { // convert string to bytedata _outputAudio = base64.decode(audio); } ByteData get outputAudio { return _outputAudio; } } ```...
Yes, that will work too! There is another watch out if you're playing around with Dialogflow. If you're planning to use your own Fulfillment webhook with nodejs and the google-actions...
I started with the inline editor early in development to prove the concept. It deploys to Google Cloud functions in your GCP account. But the npm library 'dialogflow-fulfillment' used in...
Sorry, forgot to add - if you decide to develop your own nodejs application, you can connect to firebase, by installing the firebase npm library 'firebase' and use the same...
For me, I've read the documentation in README and the AGP version conflicts with 8.6 and 8.7. I'm at version 8.10.1 so it's irrelevant. Then I looked at this to...