ListUserResponse constructor

ListUserResponse({
  1. int totalCount = 0,
  2. List<ProfileResponse> items = const [],
  3. int pageSize = 1,
})

Implementation

ListUserResponse({
  this.totalCount = 0,
  this.items = const [],
  this.pageSize = 1,
});