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();
}
The matrix to transform the child by during painting.
set transform(Matrix4 newTransform) {
assert(newTransform != null);
if (_transform == newTransform)
return;
_transform = new Matrix4.copy(newTransform);
markNeedsPaint();
}