transform property

void transform= (Matrix4 value)

The matrix to transform the child by during painting.

Implementation

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