ADAAccountUTXOResponse constructor

ADAAccountUTXOResponse({
  1. required String address,
  2. required String txHash,
  3. int? txIndex,
  4. required int outputIndex,
  5. required String block,
  6. String? dataHash,
  7. String? inlineDatum,
  8. String? referenceScriptHash,
  9. required List<ADAAmountResponse> amount,
})

Implementation

ADAAccountUTXOResponse({
  required this.address,
  required this.txHash,
  this.txIndex,
  required this.outputIndex,
  required this.block,
  this.dataHash,
  this.inlineDatum,
  this.referenceScriptHash,
  required this.amount,
});