RatingFilter.fromJson constructor

RatingFilter.fromJson(
  1. Map json_
)

Implementation

RatingFilter.fromJson(core.Map json_)
  : this(
      maxRating: (json_['maxRating'] as core.num?)?.toDouble(),
      minRating: (json_['minRating'] as core.num?)?.toDouble(),
    );