moveIntoPosition method

void moveIntoPosition()

Implementation

void moveIntoPosition() {
  if (shouldCenter) {
    center();
  }

  if (height != null) {
    setHeight(height!);
  }

  if (width != null) {
    setWidth(width!);
  }
}