List<Constraint> contains(AutoLayoutRect other)

Constraints that require that this rect contains the given rect.

Source

List<al.Constraint> contains(AutoLayoutRect other) {
  return <al.Constraint>[
    other.left >= left,
    other.right <= right,
    other.top >= top,
    other.bottom <= bottom,
  ];
}