brdzmobile_sdk 0.0.5
brdzmobile_sdk: ^0.0.5 copied to clipboard
Official BRDZ SDK for Flutter/Dart - Wallet, Payment, Crypto, QRIS, and more
BRDZ Mobile SDK #
Official Dart/Flutter SDK for BRDZ Platform - Wallet, Payment, Crypto, QRIS, and more.
Features #
- 🔐 Authentication & 2FA
- 💳 Payment Gateway (Xendit, Indodax, IDRX)
- 📱 QRIS Payment
- 🪙 Crypto Wallet Management
- 🌉 Cross-chain Bridge
- 🛍️ Marketplace Integration
- ⚡ And 27 more modules!
Installation #
Add this to your pubspec.yaml:
dependencies:
brdzmobile_sdk: ^0.0.4
Then run:
flutter pub get
Quick Start #
import 'package:brdzmobile_sdk/brdzmobile_sdk.dart';
void main() async {
// Configure SDK
BrdzConfig.setBaseUrl('https://api.brdz.link/api');
BrdzConfig.setApiKey('your_api_key_here');
// Use Auth Module
final auth = AuthModule();
try {
final result = await auth.loginUser('user@example.com', 'password123');
print('Login successful: ${result['data']}');
// Set token for authenticated requests
BrdzConfig.setToken(result['data']['token']);
} catch (e) {
print('Login failed: $e');
}
}
Available Modules #
Core Modules #
BrdzConfig- SDK configurationAuthModule- AuthenticationTwofaModule- Two-factor authenticationUsersModule- User management
Payment Modules #
QrisModule- QRIS payment (Indonesia)XenditModule- Xendit payment gatewayIndodaxModule- Crypto exchangeIdrxModule- IDR stablecoin
Blockchain Modules #
WalletModule- Wallet managementCardanoModule- Cardano integrationXrplModule- XRP LedgerNeonModule- Neon EVM
...and 21 more modules!
Documentation #
Full documentation: [Coming Soon]
Support #
- Email: support@anantla.org
- Website: https://www.brdz.xyz
License #
MIT License - see LICENSE file for details
Copyright © 2025 Anantla Technologies. All rights reserved.