Flutter Usage
How to use the Linkrunner SDK in your Flutter app
Using the Flutter SDK
This guide will help you implement Linkrunner functionality in your Flutter application.
Initializing the SDK
Initialize the Linkrunner SDK when your app starts:
User Registration
Call the signup
method once after the user has completed your app’s onboarding process:
Setting User Data
Call setUserData
each time the app opens and the user is logged in:
Handling Deferred Deep Links
To handle deferred deep links (links that led to app installation), call this method after your navigation is initialized:
Tracking Custom Events
Track custom events in your app:
Revenue Tracking
Capturing Payments
Track payment information:
Parameters for Linkrunner.capturePayment
amount
: double (required) - The payment amountuserId
: String (required) - Identifier for the user making the paymentpaymentId
: String (optional) - Unique identifier for the paymenttype
: PaymentType (optional) - Type of payment. Available options:FIRST_PAYMENT
- First payment made by the userWALLET_TOPUP
- Adding funds to a walletFUNDS_WITHDRAWAL
- Withdrawing fundsSUBSCRIPTION_CREATED
- New subscription createdSUBSCRIPTION_RENEWED
- Subscription renewalONE_TIME
- One-time paymentRECURRING
- Recurring paymentDEFAULT
- Default type (used if not specified)
status
: PaymentStatus (optional) - Status of the payment. Available options:PAYMENT_INITIATED
- Payment has been initiatedPAYMENT_COMPLETED
- Payment completed successfully (default if not specified)PAYMENT_FAILED
- Payment attempt failedPAYMENT_CANCELLED
- Payment was cancelled
Removing Payments
Remove payment records (for refunds or cancellations):
Parameters for Linkrunner.removePayment
userId
: String (required) - Identifier for the user whose payment is being removedpaymentId
: String (optional) - Unique identifier for the payment to be removed
Note: Either paymentId
or userId
must be provided when calling removePayment
. If only userId
is provided, all payments for that user will be removed.
Function Placement Guide
Function | Where to Place | When to Call |
---|---|---|
Linkrunner.init | Main app initState or equivalent | Once when app starts |
Linkrunner.signup | Onboarding flow | Once after user completes onboarding |
Linkrunner.setUserData | Authentication logic | Every time app opens with logged-in user |
Linkrunner.triggerDeeplink | After navigation init | Once after navigation is ready |
Linkrunner.trackEvent | Throughout app | When specific user actions occur |
Linkrunner.capturePayment | Payment processing | When user makes a payment |
Linkrunner.removePayment | Refund flow | When payment needs to be removed |
Complete Example
Here’s a simplified example showing how to integrate Linkrunner in a Flutter app:
Support
If you encounter issues during integration, contact us at darshil@linkrunner.io.