CallBuilder constructor

CallBuilder({
  1. required DeployedContract contract,
  2. required SolFunction function_,
  3. required List args,
  4. EvmAddr? from,
  5. String blockTag = 'latest',
})

Implementation

CallBuilder({
  required this.contract,
  required this.function_,
  required this.args,
  this.from,
  this.blockTag = 'latest',
});