setProfileAttribute method

Future<bool?> setProfileAttribute(
  1. String key,
  2. String value
)

Set Profile Attribute @param key - Key of the attribute @param value - Value of the attribute

Implementation

Future<bool?> setProfileAttribute(String key, String value) =>
    _instance.setProfileAttribute(key, value);