ChannelUsers constructor

ChannelUsers({
  1. String? userId,
  2. String? channelId,
  3. String? membership,
  4. bool? isBanned,
  5. String? lastActivity,
  6. List<String>? roles,
  7. List<String>? permissions,
  8. int? readToSegment,
  9. int? lastMentionedSegment,
  10. bool? isMuted,
  11. String? muteTimeout,
  12. String? createdAt,
  13. String? updatedAt,
})

Implementation

ChannelUsers(
    {this.userId,
    this.channelId,
    this.membership,
    this.isBanned,
    this.lastActivity,
    this.roles,
    this.permissions,
    this.readToSegment,
    this.lastMentionedSegment,
    this.isMuted,
    this.muteTimeout,
    this.createdAt,
    this.updatedAt});