AddressDataRequestsSolved.fromJson constructor
Implementation
factory AddressDataRequestsSolved.fromJson(Map<String, dynamic> json) {
return AddressDataRequestsSolved(
address: json["address"],
dataRequestsSolved: List<DataRequestSolvedInfo>.from(
json["data_requests_solved"]
.map((dr) => DataRequestSolvedInfo.fromJson(dr))),
);
}