TinResult.fromJson constructor

TinResult.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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