getSuggestedTransactionParams method

Future<TransactionParams> getSuggestedTransactionParams()

Get the suggested parameters for constructing a new transaction.

Throws an AlgorandException if there is an HTTP error. Returns the suggested transaction parameters.

Implementation

Future<TransactionParams> getSuggestedTransactionParams() async {
  return await _transactionRepository.getSuggestedTransactionParams();
}