TransactionParams constructor

TransactionParams({
  1. required String consensusVersion,
  2. required BigInt fee,
  3. required String genesisId,
  4. required Uint8List? genesisHash,
  5. required BigInt lastRound,
  6. required BigInt minFee,
})

Implementation

TransactionParams({
  required this.consensusVersion,
  required this.fee,
  required this.genesisId,
  required this.genesisHash,
  required this.lastRound,
  required this.minFee,
});