copyWith method
Implementation
FoundUsers copyWith({List<int>? userIds, String? nextOffset}) => FoundUsers(
userIds: userIds ?? this.userIds,
nextOffset: nextOffset ?? this.nextOffset,
);
FoundUsers copyWith({List<int>? userIds, String? nextOffset}) => FoundUsers(
userIds: userIds ?? this.userIds,
nextOffset: nextOffset ?? this.nextOffset,
);