BoundingBox.fromJson constructor

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

Implementation

factory BoundingBox.fromJson(Map<String, dynamic> json) {
  return BoundingBox(
    height: json['Height'] as double?,
    left: json['Left'] as double?,
    top: json['Top'] as double?,
    width: json['Width'] as double?,
  );
}