UserList constructor

UserList({
  1. required int total,
  2. required List<User> users,
})

Implementation

UserList({required this.total, required this.users});