ProgressIndicator is not defined ngCordova.js

ReferenceError: ProgressIndicator is not defined.

Shows this error in ngCordova

  $ionicPlatform.ready(function() {
    $cordovaProgress.showSuccess(true, "Success!");

    $timeout(function() {
      $cordovaProgress.hide();
    }, 2000);
  });

code sample is written like this. where it calls $cordovaProgress.

can anyone help with solution ?

You didnt inject the plugin. Inject through the controller of the respective class. :)