Matrix4TransformTween constructor

Matrix4TransformTween({
  1. Matrix4Transform? begin,
  2. Matrix4Transform? end,
})

Creates a Matrix4 tween.

The begin and end properties must be non-null before the tween is first used, but the arguments can be null if the values are going to be filled in later.

Implementation

Matrix4TransformTween({Matrix4Transform? begin, Matrix4Transform? end})
    : super(begin: begin, end: end);