FollowingModel constructor

FollowingModel({
  1. required String documentID,
  2. required String appId,
  3. MemberPublicInfoModel? follower,
  4. MemberPublicInfoModel? followed,
})

Implementation

FollowingModel({
  required this.documentID,
  required this.appId,
  this.follower,
  this.followed,
});