transform property

Matrix4 get transform

Implementation

Matrix4 get transform => _transform;
set transform (Matrix4 newTransform)

Implementation

set transform(Matrix4 newTransform) {
  if (_animationController?.isAnimating ?? false) {
    _animationController!.stop();
  }
  _setTransform(newTransform);
}