CPDFRectF.fromJson constructor
Implementation
factory CPDFRectF.fromJson(Map<String, dynamic> json) {
return CPDFRectF(
left: json['left'] ?? 0,
top: json['top'] ?? 0,
right: json['right'] ?? 0,
bottom: json['bottom'] ?? 0);
}