updateProfile method

Future<void> updateProfile(
  1. AdaptyProfileParameters params
)

You can set optional attributes such as email, phone number, etc, to the user of your app. You can then use attributes to create user segments or just view them in CRM.

Parameters:

Implementation

Future<void> updateProfile(AdaptyProfileParameters params) {
  return _invokeMethodHandlingErrors<void>(Method.updateProfile, {
    Argument.params: json.encode(params.jsonValue),
  });
}