DataRect.fromLTWH constructor

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

Implementation

DataRect.fromLTWH(
  double left,
  double top,
  double width,
  double height,
) : this.fromLTRB(left, top, left + width, top + height);