setProfileAttributes method
Set custom user profile information such as user preference, specific user actions etc
@param attributes additional attributes for a user profile
Implementation
void setProfileAttributes({required Map<String, dynamic> attributes}) {
return _platform.setProfileAttributes(
attributes: attributes.excludeNullValues());
}