minRating property

double? minRating
getter/setter pair

Filter out results whose average user rating is strictly less than this limit.

A valid value must be a float between 0 and 5 (inclusively) at a 0.5 cadence i.e. [0, 0.5, 1.0, ... , 5.0] inclusively. The input rating will round up to the nearest 0.5(ceiling). For instance, a rating of 0.6 will eliminate all results with a less than 1.0 rating.

Implementation

core.double? minRating;