copyWith method

SetCloseFriends copyWith({
  1. List<int>? userIds,
})

Implementation

SetCloseFriends copyWith({
  List<int>? userIds,
}) =>
    SetCloseFriends(
      userIds: userIds ?? this.userIds,
    );