updateProfile method
- Map<
String, String> properties
KO: 사용자 프로퍼티 저장
EN: Store user properties
Implementation
Future<void> updateProfile(Map<String, String> properties) {
return ApiFactory.handleApiError(() async {
await _dio.post(Constants.v1UpdateProfilePath,
data: {Constants.properties: jsonEncode(properties)});
});
}