FlutterBkash constructor
FlutterBkash({
- BkashCredentials? bkashCredentials,
- bool logResponse = false,
Implementation
FlutterBkash({
BkashCredentials? bkashCredentials,
this.logResponse = false,
}) : _bkashApi = BkashApi(
bkashCredentials: bkashCredentials ??
const BkashCredentials(
username: "sandboxTokenizedUser02",
password: "sandboxTokenizedUser02@12345",
appKey: "4f6o0cjiki2rfm34kfdadl1eqq",
appSecret:
"2is7hdktrekvrbljjh44ll3d9l1dtjo4pasmjvs5vl5qr3fug4b",
isSandbox: true,
),
logResponse: logResponse,
);