Rect.fromLTRB constructor
Implementation
factory Rect.fromLTRB(double left, double top, double right, double bottom) {
final ptr = calloc<c.mnn_cv_rect_t>()
..ref.left = left
..ref.top = top
..ref.right = right
..ref.bottom = bottom;
return Rect.fromPointer(ptr);
}