mirror of
https://github.com/aljazceru/breez-sdk-liquid.git
synced 2026-01-19 14:04:22 +01:00
* Fix relative path on melos.yaml * Mention current version on CHANGELOG.md * Remove symlink for apache license * Address typos & relative path issues on README.md * Ignore Flutter example app on Melos.yaml * Remove obsolete param from Config on example app * Do not treat info messages as critical * Update README of Dart/Flutter packages Revert changes on topmost README * Update pubspec.lock * Make dart output directory if it does not exists * Replace continue-on-error Resume even if previous step fails, this approach displays errors on CI summary. * Install Protoc as part of CI workflow * Added init-sdk as part of just bootstrap recipe which installs protobuf * Pinned freezed to <=2.5.2
1.2 KiB
1.2 KiB
Breez Liquid SDK plugin
Table of contents
Description
This is a Dart package that wraps the Dart bindings of Breez Liquid SDK.
Installation
To use this plugin, add breez_liquid_sdk as a dependency in your pubspec.yaml file.
Usage
To start using this package first import it in your Dart file.
import 'package:breez_liquid/breez_liquid.dart';
Call initialize() to initialize Breez Liquid SDK, preferably on main.dart:
import 'package:breez_liquid/breez_liquid.dart' as liquid_sdk;
void main() async {
// Initialize library
await liquid_sdk.initialize();
}
Please refer to Dart examples on Breez Liquid SDK documentation for more information on features & capabilities of the Breez Liquid SDK.