createCheckTransaction method
Implementation
Future<UserTransactionWithFallback> createCheckTransaction({
String? requestId,
required String checkId,
String? accountId,
int? topupQuotaId,
}) async {
return await invokeMethod<UserTransactionWithFallback>(
(j) => UserTransactionWithFallback.fromJson(j),
'createCheckTransaction',
{
'env': this.env.index,
'accessToken': this.accessToken,
'request_id': requestId,
'check_id': checkId,
'account_id': accountId,
'topup_quota_id': topupQuotaId,
},
);
}