applyConstraints method

void applyConstraints()

Applies constraints to the width, height, left and top.

Implementation

void applyConstraints() {
  width.value = _applyWidth(width.value);
  height.value = _applyHeight(height.value);
  left.value = _applyLeft(left.value);
  right.value = _applyRight(right.value);
  top.value = _applyTop(top.value);
  bottom.value = _applyBottom(bottom.value);
}