Identify User

This API is primarily used to identify your user, sort of like a log in kind of method. The API takes two strings, the user's email being the first, and the user's name for the second.

Instabug.identifyUser(withEmail: "john.appleseed@apple.com", name: "John Appleseed")
[Instabug identifyUserWithEmail:@"john.appleseed@apple.com" name:@"John Appleseed"];
Instabug.identifyUser("user name", "email");
Instabug.identifyUserWithEmail("john.appleseed@apple.com", "John Appleseed");
cordova.plugins.instabug.identifyUserWithEmail(
    'john.appleseed@apple.com',
  	'John',
    function () {
        console.log('Success');
    },
    function (error) {
        console.log(error);
    }
);
//iOS
Instabug.IdentifyUserWithEmail("user_email", "user_name");

//Android 
Instabug.IdentifyUser("user_email", "user_name");
Instabug.identifyUserWithEmail(String email, [String name]);