copyWith method
Implementation
FollowRequestEntity copyWith({
String? documentID,
String? appId,
String? followerId,
String? followedId,
int? status,
}) {
return FollowRequestEntity(
appId: appId ?? this.appId,
followerId: followerId ?? this.followerId,
followedId: followedId ?? this.followedId,
status: status ?? this.status,
);
}