updateLayout method

void updateLayout(
  1. double x,
  2. double y,
  3. double w,
  4. double h,
)

Implementation

void updateLayout(double x, double y, double w, double h) {
  _x = x;
  _y = y;
  _width = w;
  _height = h;
  _hasUpdateLayout = true;
}