DetectCustomLabelsResponse.fromJson constructor
Implementation
factory DetectCustomLabelsResponse.fromJson(Map<String, dynamic> json) {
return DetectCustomLabelsResponse(
customLabels: (json['CustomLabels'] as List?)
?.whereNotNull()
.map((e) => CustomLabel.fromJson(e as Map<String, dynamic>))
.toList(),
);
}