CPDFKeywordConfig.fromJson constructor
Implementation
factory CPDFKeywordConfig.fromJson(Map<String, dynamic> json) {
return CPDFKeywordConfig(
borderColor: HexColor.fromHex(json['borderColor']),
fillColor: HexColor.fromHex(json['fillColor']),
);
}