CPDFBotaMenuConfig.fromJson constructor

CPDFBotaMenuConfig.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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