topup method

Future<UserTransaction> topup({
  1. required Check check,
  2. String? accountId,
})

Implementation

Future<UserTransaction> topup({required Check check, String? accountId}) async {
  return await this.api.createUserTransactionWithCheck(checkId: 'check.id', accountId: accountId);
}