CPDFRectF.fromJson constructor

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

Implementation

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