createAccountSevenAtmSession method
Implementation
Future<SevenAtmSession> createAccountSevenAtmSession({
required String accountId,
required String qrInfo,
required double amount,
int? topupQuotaId,
}) async {
return await invokeMethod<SevenAtmSession>(
(j) => SevenAtmSession.fromJson(j),
'createAccountSevenAtmSession',
{
'env': this.env.index,
'accessToken': this.accessToken,
'accountId': accountId,
'qrInfo': qrInfo,
'amount': amount,
'topupQuotaId': topupQuotaId,
},
);
}