updateLayout method

void updateLayout(
  1. double x,
  2. double y,
  3. double width,
  4. double height,
)

Implementation

void updateLayout(double x, double y, double width, double height) {
  LogUtils.dRender("ID:$id, before update layout($this)");
  _x = x;
  _y = y;
  _width = width;
  _height = height;
  LogUtils.dRender("ID:$id, after update layout($this)");
}