etebase_account_change_password method

int etebase_account_change_password(
  1. Pointer<EtebaseAccount> this_,
  2. Pointer<Char> password
)

Change the user's login password

@param this_ the object handle @param password the new password to be set

Implementation

int etebase_account_change_password(
  ffi.Pointer<EtebaseAccount> this_,
  ffi.Pointer<ffi.Char> password,
) {
  return _etebase_account_change_password(
    this_,
    password,
  );
}