CPDFBotaMenuConfig.fromJson constructor
Implementation
factory CPDFBotaMenuConfig.fromJson(Map<String, dynamic> json) {
return CPDFBotaMenuConfig(
annotations: json['annotations'] != null
? CPDFBotaAnnotationMenuConfig.fromJson(json['annotations'])
: const CPDFBotaAnnotationMenuConfig(),
);
}