Rect.fromLTWH constructor
Creates a rectangle from the specified left and top positions with width and height dimensions.
Implementation
const Rect.fromLTWH(double left, double top, double width, double height)
: this.fromLTRB(left, top, left + width, top + height);