GroupMemberInfo constructor

GroupMemberInfo(
  1. String userId,
  2. int joinedTs,
  3. ChatGroupPermissionType role, {
  4. String? namecard,
  5. String? nickname,
  6. String? avatarUrl,
})

创建群成员信息。

Implementation

GroupMemberInfo(
  this.userId,
  this.joinedTs,
  this.role, {
  this.namecard,
  this.nickname,
  this.avatarUrl,
});