DescribeDominantLanguageDetectionJobResponse.fromJson constructor
DescribeDominantLanguageDetectionJobResponse.fromJson(
- Map<String, dynamic> json
)
Implementation
factory DescribeDominantLanguageDetectionJobResponse.fromJson(
Map<String, dynamic> json) {
return DescribeDominantLanguageDetectionJobResponse(
dominantLanguageDetectionJobProperties:
json['DominantLanguageDetectionJobProperties'] != null
? DominantLanguageDetectionJobProperties.fromJson(
json['DominantLanguageDetectionJobProperties']
as Map<String, dynamic>)
: null,
);
}