Event constructor

const Event({
  1. required String packageId,
  2. required String module,
  3. required String sender,
  4. required String eventType,
  5. required Uint8List bcs,
  6. Map<String, dynamic>? json,
  7. String? checkpoint,
  8. String? transactionDigest,
  9. int? eventIndex,
})

Implementation

const Event({
  required this.packageId,
  required this.module,
  required this.sender,
  required this.eventType,
  required this.bcs,
  this.json,
  this.checkpoint,
  this.transactionDigest,
  this.eventIndex,
});