BoxConstraintsTween constructor

BoxConstraintsTween({
  1. BoxConstraints? begin,
  2. BoxConstraints? end,
})

Creates a BoxConstraints tween.

The begin and end properties may be null; the null value is treated as a tight constraint of zero size.

Implementation

BoxConstraintsTween({ super.begin, super.end });