TxOut constructor

const TxOut({
  1. required BigInt value,
  2. required Uint8List scriptPubkey,
})

Implementation

const TxOut({
  required this.value,
  required this.scriptPubkey,
});