Future<void> updatePw({String? oldPw, String? newPw}) async { if (oldPw != newPw) { await updateCipher(oldPw: oldPw, newPw: newPw); } }