TinResult.fromJson constructor
Implementation
factory TinResult.fromJson(Map<String, dynamic> json) => TinResult(
productionDate: json["productionDate"],
resultPrettified: json["resultPrettified"],
text: json["text"],
tireAgeInYearsRoundedDown: json["tireAgeInYearsRoundedDown"],
);