SearchModel constructor

SearchModel({
  1. required String query,
  2. String? trigger,
  3. String? service,
  4. String? mode,
  5. dynamic filters,
  6. Map<String, dynamic>? ordering,
  7. String? sessionId,
  8. String? userId,
  9. String? device,
  10. String? os,
  11. String? lang,
})

Implementation

SearchModel({
  required this.query,
  this.trigger,
  this.service,
  this.mode,
  this.filters,
  this.ordering,
  this.sessionId,
  this.userId,
  this.device,
  this.os,
  this.lang,
});