MmSearchAllChannelsRequest constructor

MmSearchAllChannelsRequest({
  1. required String term,
  2. String? notAssociatedToGroup,
  3. bool? excludeDefaultChannels,
  4. List<String> teamIds = const [],
  5. bool? groupConstrained,
  6. bool? excludeGroupConstrained,
  7. bool? public,
  8. bool? private,
  9. bool? deleted,
  10. String? page,
  11. String? perPage,
  12. bool excludePolicyConstrained = false,
})

Returns a new MmSearchAllChannelsRequest instance.

Implementation

MmSearchAllChannelsRequest({
  required this.term,
  this.notAssociatedToGroup,
  this.excludeDefaultChannels,
  this.teamIds = const [],
  this.groupConstrained,
  this.excludeGroupConstrained,
  this.public,
  this.private,
  this.deleted,
  this.page,
  this.perPage,
  this.excludePolicyConstrained = false,
});