CreateHITWithHITTypeResponse.fromJson constructor
Implementation
factory CreateHITWithHITTypeResponse.fromJson(Map<String, dynamic> json) {
return CreateHITWithHITTypeResponse(
hit: json['HIT'] != null
? HIT.fromJson(json['HIT'] as Map<String, dynamic>)
: null,
);
}