BoxConstraintsTween constructor

BoxConstraintsTween({BoxConstraints begin, 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({ BoxConstraints begin, BoxConstraints end }) : super(begin: begin, end: end);