TransactionInput constructor

TransactionInput({
  1. required ShelleyAddress address,
  2. required List<TransactionAmount> amounts,
  3. required String txHash,
  4. required int outputIndex,
})

Implementation

TransactionInput(
    {required this.address,
    required this.amounts,
    required this.txHash,
    required this.outputIndex});