ScripthashUnspent constructor

ScripthashUnspent({
  1. required String scripthash,
  2. required int height,
  3. required String txHash,
  4. required int txPos,
  5. required int value,
  6. String? symbol,
})

Implementation

ScripthashUnspent({
  required this.scripthash,
  required this.height,
  required this.txHash,
  required this.txPos,
  required this.value,
  this.symbol,
});