GroupMemberEntity constructor

GroupMemberEntity({
  1. required String userID,
  2. Map<String, String>? customInfo,
  3. String? nameCard,
})

Implementation

GroupMemberEntity({
  required this.userID,
  this.customInfo,
  this.nameCard,
});