AlignmentGeometryTween constructor

AlignmentGeometryTween({
  1. AlignmentGeometry? begin,
  2. AlignmentGeometry? end,
})

Creates a fractional offset geometry tween.

The begin and end properties may be null; the null value is treated as meaning the center.

Implementation

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