We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a7b4eb commit a92a97eCopy full SHA for a92a97e
libs/sdk-flutter/lib/breez_sdk.dart
@@ -84,6 +84,13 @@ class BreezSDK {
84
}
85
86
/// Unregister webhook callbacks for the given `webhook_url`.
87
+ Future<void> unregisterWebhook({required String webhookUrl}) async {
88
+ return binding.unregisterWebhook(webhookUrl: webhookUrl);
89
+ }
90
+
91
+ /// connect initializes the global NodeService, schedule the node to run in the cloud and
92
+ /// run the signer. This must be called in order to start communicate with the node
93
+ ///
94
/// # Arguments
95
///
96
/// * `req` - The connect request containing the `config` sdk configuration and `seed` node private key
0 commit comments