This plugin takes iOS SIRI intent of {send a message using appName} and Ok Google {take a note} with the help of getIntent method.
Usage Example:
var iOSAndroidIntent = window['cordova'].plugins.iOSAndroidIntent;
if (typeof iOSAndroidIntent != 'undefined') {
iOSAndroidIntent.getIntent().then((value) => {
// handle voice input
})
.catch(error => {
// handle error
});
}
IOS
Android