copyWith method

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

Implementation

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