BoundingBox.fromJson constructor

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

Implementation

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