SearchUsersResponse constructor

SearchUsersResponse({
  1. String? nextToken,
  2. int? totalCount,
  3. List<UserData>? users,
})

Implementation

SearchUsersResponse({
  this.nextToken,
  this.totalCount,
  this.users,
});