BookedUsers constructor

BookedUsers({
  1. int? userId,
  2. String? thumbnail,
  3. String? displayName,
  4. int? createdAt,
})

Implementation

BookedUsers({
  this.userId,
  this.thumbnail,
  this.displayName,
  this.createdAt,
});