Regenerate Dart bindings

Remove GetInfoRequest from example app
Update min Dart SDK version
This commit is contained in:
Erdem Yerebasmaz
2024-06-14 15:26:26 +03:00
parent 4ed72e70f0
commit ce34a2218c
9 changed files with 15 additions and 12 deletions

View File

@@ -27,7 +27,7 @@ class BreezLiquidSDK {
}
Future<liquid_sdk.GetInfoResponse> _getInfo(liquid_sdk.BindingLiquidSdk sdk) async {
final walletInfo = await sdk.getInfo(req: const liquid_sdk.GetInfoRequest(withScan: false));
final walletInfo = await sdk.getInfo();
_walletInfoController.add(walletInfo);
return walletInfo;
}