AnnotWithRect.fromJson constructor

AnnotWithRect.fromJson(
  1. dynamic json
)

Implementation

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