Meteor add cordova: then what?

In meteor 1.8.1 with react
I want to add cordova plugin so I run command
‘meteor add cordova:cordova-plugin-x-toast@2.7.2’
but the I can not find ‘window.plugin’ or ‘corodva.’ or 'navigator.plugins. ’ in webstorm

now I user comannd
‘meteor npm install --save cordova-plugin-x-toast@2.7.2’
‘import toast from ‘cordova-plugin-x-toast’’
I can find toast.show()

Is there something else need to do besides
‘meteor add cordova:cordova-plugin-x-toast@2.7.2’
I didn’t find any more informations on the meteor documentation. Could you tell me how to make cordova plugin works?