WatchContractEventParameters constructor

WatchContractEventParameters({
  1. required Abi abi,
  2. required String eventName,
  3. String? address,
  4. List? args,
  5. bool? batch,
  6. int? chainId,
  7. OnErrorCallback? onError,
  8. OnLogCallback? onLogs,
  9. bool? poll,
  10. int? pollingInterval,
  11. bool? strict,
  12. bool? syncConnectedChain,
})

Implementation

WatchContractEventParameters({
  required this.abi,
  required this.eventName,
  this.address,
  this.args,
  this.batch,
  this.chainId,
  this.onError,
  this.onLogs,
  this.poll,
  this.pollingInterval,
  this.strict,
  this.syncConnectedChain,
});