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