ContractFunction constructor

const ContractFunction(
  1. String name,
  2. List<AbiType> parameters, {
  3. List<AbiType> outputs = const [],
  4. String stateMutability = 'nonpayable',
})

Implementation

const ContractFunction(
  this.name,
  this.parameters, {
  this.outputs = const [],
  this.stateMutability = 'nonpayable',
});