unregisterWebhook method
Future<void>
unregisterWebhook(
{ - required String webhookUrl,
- dynamic hint,
})
override
Implementation
Future<void> unregisterWebhook({required String webhookUrl, dynamic hint}) {
var arg0 = _platform.api2wire_String(webhookUrl);
return _platform.executeNormal(FlutterRustBridgeTask(
callFfi: (port_) => _platform.inner.wire_unregister_webhook(port_, arg0),
parseSuccessData: _wire2api_unit,
parseErrorData: _wire2api_FrbAnyhowException,
constMeta: kUnregisterWebhookConstMeta,
argValues: [webhookUrl],
hint: hint,
));
}