copyWith method
Implementation
FollowingArrayEntity copyWith({
String? documentID,
String? appId,
List<String>? followers,
}) {
return FollowingArrayEntity(
appId: appId ?? this.appId,
followers: followers ?? this.followers,
);
}
FollowingArrayEntity copyWith({
String? documentID,
String? appId,
List<String>? followers,
}) {
return FollowingArrayEntity(
appId: appId ?? this.appId,
followers: followers ?? this.followers,
);
}