toEntity method
Implementation
@override
FollowRequestEntity toEntity({String? appId}) {
return FollowRequestEntity(
appId: appId,
followerId: (follower != null) ? follower!.documentID : null,
followedId: (followed != null) ? followed!.documentID : null,
status: (status != null) ? status!.index : null,
);
}