Result constructor

Result({
  1. String contract,
  2. String method,
  3. bool success,
  4. int gasUsed,
  5. String txHash,
  6. String error,
  7. String gasCost,
  8. String txFee,
})

Implementation

Result({
  this.contract,
  this.method,
  this.success,
  this.gasUsed,
  this.txHash,
  this.error,
  this.gasCost,
  this.txFee,
});