BoundingBox.fromJson constructor

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

Implementation

BoundingBox.fromJson(Map<String, dynamic> json) {
  bottomRight = json['bottom_right'].cast<int>();
  topLeft = json['top_left'].cast<int>();
}