[Solved] how to use cordova-plugin-dialogs?


well create something like

navigator.notification.alert(
    'You are the winner!',  // message
    alertDismissed,         // callback
    'Game Over',            // title
    'Done'                  // buttonName
);

solved how to use cordova-plugin-dialogs?