UserArray constructor

UserArray({
  1. required List<User> results,
  2. int? start,
  3. int? limit,
  4. int? size,
  5. int? totalSize,
  6. GenericLinks? links,
})

Implementation

UserArray(
    {required this.results,
    this.start,
    this.limit,
    this.size,
    this.totalSize,
    this.links});