copyWith method
Implementation
PagedListUserDetailsApplicationUser copyWith(
{int? endIndex,
List<UserDetails>? items,
int? maxResults,
int? size,
int? startIndex}) {
return PagedListUserDetailsApplicationUser(
endIndex: endIndex ?? this.endIndex,
items: items ?? this.items,
maxResults: maxResults ?? this.maxResults,
size: size ?? this.size,
startIndex: startIndex ?? this.startIndex,
);
}