ModerationLabel.fromJson constructor
Implementation
factory ModerationLabel.fromJson(Map<String, dynamic> json) {
return ModerationLabel(
confidence: json['Confidence'] as double?,
name: json['Name'] as String?,
parentName: json['ParentName'] as String?,
);
}