getBoundingBox static method
Implementation
static Rect getBoundingBox(dynamic boundingBoxMap) {
return Rect.fromLTRB(
(boundingBoxMap['left'] as int).toDouble(),
(boundingBoxMap['top'] as int).toDouble(),
(boundingBoxMap['right'] as int).toDouble(),
(boundingBoxMap['bottom'] as int).toDouble(),
);
}