DeployContractParameters constructor

DeployContractParameters({
  1. required Abi abi,
  2. required String bytecode,
  3. String? account,
  4. List? args,
  5. dynamic connector,
})

Implementation

DeployContractParameters({
  required this.abi,
  required this.bytecode,
  this.account,
  this.args,
  this.connector,
});