createCheckTransaction method

Future<UserTransactionWithFallback> createCheckTransaction({
  1. String? requestId,
  2. required String checkId,
  3. String? accountId,
  4. int? topupQuotaId,
})

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,
    },
  );
}