HomeDocumentationAPI Reference
Getting StartedAPI ReferenceBug ReportingCrash ReportingAPMHelp Center
These docs are for v8.1. Click to read the latest docs for v12.0.0.

Show Feature Requests

This method can be used to display the feature requests page. It is recommended that this method be attached to a button, for example.

FeatureRequests.show()
[IBGFeatureRequests show];
FeatureRequests.show();
FeatureRequests.show();
cordova.plugins.featureRequests.show(
            true,
            function () {
                console.log('showFeatureRequests successfully!');
            },
            function (error) {
                console.log('Error: showFeatureRequests - ' + error);
            }
        );
//iOS
IBGFeatureRequests.Show();

//Android
FeatureRequests.Show();