AbiEntry constructor

AbiEntry({
  1. bool anonymous = false,
  2. required String name,
  3. required List<AbiEntryParam> inputs,
  4. required List<AbiEntryParam> outputs,
  5. required AbiEntryType type,
  6. bool payable = false,
})

Implementation

AbiEntry({
  this.anonymous = false,
  required this.name,
  required this.inputs,
  required this.outputs,
  required this.type,
  this.payable = false,
});