Meteor Cordova: navigator.camera is undefined

I am trying to make this work. I installed cordova-plugin-camera like it stands in the documentation.

meteor add cordova:cordova-plugin-camera@2.2.0

Then I was trying to log navigator.camera it was undefined. After some digging I found this snippet:

Template.round.onCreated(function(){
    Meteor.startup(function() {
      console.log(navigator.camera);
    });
  });

Still no luck. Does anyboday have a quick checklist or an idea what is wrong? I am testing in my Browser. The git says it should work.

Hi, were you able to fix this? Im having same issue.