MmSearchUsersRequest constructor

MmSearchUsersRequest({
  1. required String term,
  2. String? teamId,
  3. String? notInTeamId,
  4. String? inChannelId,
  5. String? notInChannelId,
  6. String? inGroupId,
  7. bool? groupConstrained,
  8. bool? allowInactive,
  9. bool? withoutTeam,
  10. int limit = 100,
})

Returns a new MmSearchUsersRequest instance.

Implementation

MmSearchUsersRequest({
  required this.term,
  this.teamId,
  this.notInTeamId,
  this.inChannelId,
  this.notInChannelId,
  this.inGroupId,
  this.groupConstrained,
  this.allowInactive,
  this.withoutTeam,
  this.limit = 100,
});