Skip to content

Commit 1933e5f

Browse files
committed
Add Mode to Flutter Docs
1 parent 3ef36e2 commit 1933e5f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/bank-connect/flutter.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ class MainApp:FlutterApplication() {
123123
Initialize the `FinBoxBcPlugin` in dart file
124124

125125
```dart
126-
FinBoxBcPlugin.initSdk("CLIENT_API_KEY","FROM_DATE","TO_DATE","BANK_NAME");
126+
FinBoxBcPlugin.initSdk("CLIENT_API_KEY","FROM_DATE","TO_DATE","BANK_NAME","MODE");
127127
```
128128

129129
| Builder Property | Description | Required |
@@ -133,6 +133,7 @@ FinBoxBcPlugin.initSdk("CLIENT_API_KEY","FROM_DATE","TO_DATE","BANK_NAME");
133133
| `fromDate` | specifies the starting period of the statement in `DD/MM/YYYY`format | No |
134134
| `toDate` | specifies the end period of the statement in `DD/MM/YYYY` format | No |
135135
| `bank` | pass the [bank identifier](/bank-connect/appendix.html#bank-identifiers) to skip the bank selection screen and directly open a that bank's screen instead | No |
136+
| `mode` | set the mode as pdf (manual upload) or aa (Account Aggregator) or online (Net Banking) | No |
136137

137138
`fromDate` and `toDate` specify the period for which the statements will be fetched. For example, if you need the last 6 months of statements, `fromDate` will be today's date - 6 months and `toDate` will be today's date - 1 day. If not provided the default date range is 6 months from the current date. It should be in `DD/MM/YYYY` format.
138139

0 commit comments

Comments
 (0)