Create region from left, top, right and bottom
factory Region.fromLTRB(int x1, int y1, int x2, int y2) { return Region(x1: x1, x2: x2, y1: y1, y2: y2); }