updateProfile static method

Future<bool> updateProfile(
  1. Map<String, String> properties
)

카카오 SDK를 통해 사용자 정보를 저장합니다.

사용자 정보 저장하기 기능은 사용자 프로퍼티인 properties 하위 정보의 값을 저장합니다. 키 값은 내 애플리케이션 > 사용자 프로퍼티에 정의한 값을 사용해야 합니다.

사용자 정보 저장 성공 유무에 따라 bool 값을 반환합니다.

Implementation

static Future<bool> updateProfile(Map<String, String> properties) async {
  return await _channel.invokeMethod('updateProfile', properties) ?? false;
}