PaymentData constructor

PaymentData({
  1. String? name,
  2. String? address,
  3. Uint8List? hash,
  4. Uint8List? output,
  5. Uint8List? pubkey,
  6. Uint8List? input,
  7. Uint8List? signature,
  8. List<Uint8List?>? witness,
  9. PaymentData? redeem,
})

Implementation

PaymentData({
  this.name,
  this.address,
  this.hash,
  this.output,
  this.pubkey,
  this.input,
  this.signature,
  this.witness,
  this.redeem
});