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...