PeEventModel constructor

PeEventModel({
  1. String? id,
  2. String? title,
  3. String? pictureUrl,
  4. int? datetimeStart,
  5. int? datetimeStop,
  6. int? ownerId,
  7. String? ownerDisplayName,
  8. List<PEUsers>? users,
})

Implementation

PeEventModel(
    {this.id,
    this.title,
    this.pictureUrl,
    this.datetimeStart,
    this.datetimeStop,
    this.ownerId,
    this.ownerDisplayName,
    this.users});