EventCreator constructor

EventCreator({
  1. String? displayName,
  2. String? email,
  3. String? id,
  4. bool? self,
})

Implementation

EventCreator({
  this.displayName,
  this.email,
  this.id,
  this.self,
});