FriendInfoEntity constructor

FriendInfoEntity({
  1. required String userID,
  2. String? friendRemark,
  3. Map<String, String>? friendCustomInfo,
})

Implementation

FriendInfoEntity({
  required this.userID,
  this.friendRemark,
  this.friendCustomInfo,
});