AnnotationAttachment.fromJson constructor
Implementation
factory AnnotationAttachment.fromJson(String id, Map<String, dynamic> json) {
return AnnotationAttachment(
id: id,
binary: json['binary'] as String,
contentType: json['contentType'] as String,
);
}