Rating.fromMap constructor

Rating.fromMap(
  1. Map<String, dynamic> json
)

Implementation

factory Rating.fromMap(Map<String, dynamic> json) => Rating(
      hasNumber: json["hasNumber"],
      customRatingSvgUnselected: json["customRatingSVGUnselected"],
      customRatingSvgSelected: json["customRatingSVGSelected"],
      svgHeight: json["svgHeight"],
      svgWidth: json["svgWidth"],
    );