VisualSearchResponseResponse constructor

VisualSearchResponseResponse({
  1. int? numFound,
  2. int? start,
  3. List docs = const [],
})

Returns a new VisualSearchResponseResponse instance.

Implementation

VisualSearchResponseResponse({
  this.numFound,
  this.start,
  this.docs = const [],
});