PagedListUserDetailsApplicationUser constructor

PagedListUserDetailsApplicationUser({
  1. int? endIndex,
  2. List<UserDetails>? items,
  3. int? maxResults,
  4. int? size,
  5. int? startIndex,
})

Implementation

PagedListUserDetailsApplicationUser(
    {this.endIndex,
    List<UserDetails>? items,
    this.maxResults,
    this.size,
    this.startIndex})
    : items = items ?? [];