ULicencePlateHistoryItem.fromMap constructor

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

Implementation

factory ULicencePlateHistoryItem.fromMap(Map<String, dynamic> json) => ULicencePlateHistoryItem(
  system: json["system"],
  type: json["type"],
  installDate: json["installDate"],
  model: json["model"],
);