COSELabels.fromJson constructor
Implementation
factory COSELabels.fromJson(Map<String, dynamic> json) {
return COSELabels(
labels:
(json["labels"] as List).map((e) => COSELabel.fromJson(e)).toList(),
serializationConfig:
COSESerializationConfig.fromJson(json["serialization_config"]));
}