Breez Liquid SDK release notes can be found at breez-sdk-liquid/releases
initialize()is nowFlutterBreezLiquid.init()BindingLiquidSdkrenamed toBreezSdkLiquid- If your app uses a Notification Service Extension (NSE), you may need to re-add the SDK’s NSE source files to the Compile Sources build phase of your NSE target.
// Before
await initialize();
BindingLiquidSdk sdk;
// After
await FlutterBreezLiquid.init();
BreezSdkLiquid sdk;