Vout constructor

Vout(
  1. String scriptpubkey,
  2. String scriptpubkeyAsm,
  3. String scriptpubkeyType,
  4. String? scriptpubkeyAddress,
  5. int value,
)

Implementation

Vout(this.scriptpubkey, this.scriptpubkeyAsm, this.scriptpubkeyType,
    this.scriptpubkeyAddress, this.value) {
  isNonnegativeInt(value);
}