FollowRequestModel constructor

FollowRequestModel({
  1. required String documentID,
  2. required String appId,
  3. MemberPublicInfoModel? follower,
  4. MemberPublicInfoModel? followed,
  5. FollowRequestStatus? status,
})

Implementation

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