updateUser static method

Future<void> updateUser(
  1. Map<String, dynamic> identity
)

Updates the user information with the provided identity.

This method should be called to update the user's information after the SDK has been configured.

@remarks Make sure that you have called the configure(appID) method before. The userID property can not be updated.

@param identity A map containing the user's identity information.

Implementation

static Future<void> updateUser(Map<String, dynamic> identity) {
  return DevRevSDKPlatform.instance.updateUser(identity);
}