import 'package:breez_sdk/breez_sdk.dart'; Future webhook() async { // ANCHOR: register-webook await BreezSDK().registerWebhook(webhookUrl: "https://yourapplication.com"); // ANCHOR_END: register-webook } Future paymentWebhook({required String paymentHash}) async { // ANCHOR: register-payment-webook await BreezSDK().registerWebhook(webhookUrl: "https://your-nds-service.com/notify?platform=ios&token="); // ANCHOR_END: register-payment-webook }