Users constructor

const Users({
  1. required int totalCount,
  2. required List<int> userIds,
  3. dynamic extra,
  4. int? clientId,
})

Represents a list of users

Implementation

const Users({
  required this.totalCount,
  required this.userIds,
  this.extra,
  this.clientId,
});