void transform=(Matrix4 newTransform)

The matrix to transform the child by during painting.

Source

set transform(Matrix4 newTransform) {
  assert(newTransform != null);
  if (_transform == newTransform)
    return;
  _transform = new Matrix4.copy(newTransform);
  markNeedsPaint();
}