Event constructor

Event({
  1. String? id,
  2. String? type,
  3. Repository? repo,
  4. User? actor,
  5. Organization? org,
  6. Map<String, dynamic>? payload,
  7. DateTime? createdAt,
})

Implementation

Event({
  this.id,
  this.type,
  this.repo,
  this.actor,
  this.org,
  this.payload,
  this.createdAt,
});