EventLog constructor

EventLog({
  1. required String name,
  2. String? ext1,
  3. String? ext2,
  4. String? ext3,
  5. String? from,
})

Implementation

EventLog({
  required this.name,
  this.ext1,
  this.ext2,
  this.ext3,
  this.from,
});