CPDFSoundAnnotation.fromJson constructor
Implementation
factory CPDFSoundAnnotation.fromJson(Map<String, dynamic> json) {
final common = CPDFAnnotation.fromJson(json);
return CPDFSoundAnnotation(
title: common.title,
content: common.content,
createDate: common.createDate,
page: common.page,
uuid: common.uuid,
rect: common.rect,
soundPath: json['soundPath'],
);
}