Param constructor

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

Implementation

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