hidden property

int hidden

Number of hidden results found.

Implementation

int get hidden {
  if (this.raw != null &&
      this.raw!['hits'] != null &&
      this.raw!['hits']['hidden'] is int) {
    return this.raw!['hits']['hidden'];
  }
  return 0;
}