updateProfile method
- Map<
String, String> properties
KO: 사용자 프로퍼티 저장
EN: Store user properties
Implementation
Future<void> updateProfile(Map<String, String> properties) {
SdkLog.d(
'[UserApi.updateProfile] started | propertiesCount=${properties.length}',
);
return _client.post(
Constants.v1UpdateProfilePath,
data: {Constants.properties: properties.toJson()},
);
}