V2TimGroupMemberFullInfo constructor

V2TimGroupMemberFullInfo(
  1. {required String userID,
  2. int? role,
  3. int? muteUntil,
  4. int? joinTime,
  5. Map<String, String>? customInfo,
  6. String? nickName,
  7. String? nameCard,
  8. String? friendRemark,
  9. String? faceUrl,
  10. bool? isOnline,
  11. List<String>? onlineDevices}
)

Implementation

V2TimGroupMemberFullInfo({
  required this.userID,
  this.role,
  this.muteUntil,
  this.joinTime,
  this.customInfo,
  this.nickName,
  this.nameCard,
  this.friendRemark,
  this.faceUrl,
  this.isOnline,
  this.onlineDevices,
});