copyWith method

FollowingArrayEntity copyWith({
  1. String? documentID,
  2. String? appId,
  3. List<String>? followers,
})

Implementation

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