AnnotWithRect.fromJson constructor
AnnotWithRect.fromJson(
- dynamic json
Implementation
factory AnnotWithRect.fromJson(dynamic json) {
return AnnotWithRect(
json['id'], json['pageNumber'], Rect.fromJson(json['rect']));
}