fromLTWH method Null safety

Rect fromLTWH(
  1. double left,
  2. double top,
  3. double width,
  4. double height
)

Implementation

static Rect fromLTWH(double left, double top, double width, double height) =>
    Rect(left, top, left + width, top + height);