Transaction constructor

Transaction({
  1. XCBAddress? from,
  2. XCBAddress? to,
  3. int? maxEnergy,
  4. XCBAmount? energyPrice,
  5. XCBAmount? value,
  6. Uint8List? data,
  7. int? nonce,
})

Implementation

Transaction({
  this.from,
  this.to,
  this.maxEnergy,
  this.energyPrice,
  this.value,
  this.data,
  this.nonce,
});