Flutter SDK
Flutter SDK

1 How to integrate
Pubspec.yaml
check latest version.
function
to initiate SDK.B24DirectDebitSdk.initSdk
Field | Type | Remark |
---|---|---|
context | Context* | key (context) current text to open BottomSheet |
subscriptionNo | String* | Subscription number at Bill24 |
side | ||
refererKey | String* | Can be any key to identity the client side or referer URL |
language | String | The language to display km : Khmer*(default)* en : English |
darkMode | Boolean | The option display themes payment checkout false : Theme Light (default) true : Theme Dark |
isProduction | Boolean | The option for environment false : For environment testing*(default)* true : For environment production |
Grant Permission for iOS
Add configuration to open Deeplink
Info.plist
<key>LSApplicationQueriesSchemes</key>
<array>
<string>https</string>
<string>http</string>
</array>
Grant Permission for Android
Add configuration to open Deeplink
AndroidManifest
<uses-permission android:name="android.permission.INTERNET" />
<queries>
<intent>
<action android:name="android.intent.action.VIEW"/>
<data android:scheme="https" />
</intent>
<intent>
<action android:name="android.intent.action.VIEW"/>
<data android:scheme="http" />
</intent>
</queries>
Support Version:
Dart SDK:^3.5.x
Flutter SDK: >=1.17.0
iOS minimun version 13.0
Android minimun version 5.0 | API level : 21
NOTE
Modified at 2024-09-26 09:59:49