Param constructor

Param({
  1. String from,
  2. String contract,
  3. String method,
  4. double amount,
  5. List<Arg> args,
  6. double maxFee,
  7. int broadcastBlock,
})

Implementation

Param({
  this.from,
  this.contract,
  this.method,
  this.amount,
  this.args,
  this.maxFee,
  this.broadcastBlock,
});