Flutter SDK
🚧 Coming Soon
Flutter SDK is currently in development. Expected release: Q2 2026
Get Notified
Want to be notified when the Flutter SDK is ready? Email us at hello@influ.to with subject "Flutter SDK Interest"
Planned Features
- ✓ Same API as React Native SDK
- ✓ RevenueCat integration
- ✓ Automatic attribution
- ✓ Promo code support
- ✓ iOS & Android support
Planned API (Subject to Change)
Installation
dependencies:
influto_sdk: ^1.0.0
purchases_flutter: ^6.0.0 # RevenueCatUsage Example
import 'package:influto_sdk/influto_sdk.dart';
import 'package:purchases_flutter/purchases_flutter.dart';
// Initialize
await Purchases.configure(
PurchasesConfiguration('rcpk_...')
);
await InfluTo.initialize(
apiKey: 'it_live_abc123...',
debug: kDebugMode,
);
// Check attribution
final attribution = await InfluTo.checkAttribution();
if (attribution.attributed) {
print('User from: ${attribution.referralCode}');
// Automatically set in RevenueCat
}
// Identify user
final customerInfo = await Purchases.getCustomerInfo();
await InfluTo.identifyUser(customerInfo.originalAppUserId);Current Workaround
Until Flutter SDK is available, you can:
- Use platform channels to call native iOS/Android SDKs
- Or use our REST API directly (advanced)
- Contact us for custom integration support
Timeline
- Q1 2026: Alpha release for testing
- Q2 2026: Public beta
- Q3 2026: Stable v1.0.0
Follow updates on influ.to or join our Discord (coming soon).