transformMatrix property

Matrix4? transformMatrix

Implementation

Matrix4? get transformMatrix {
  if (_transformMatrix == null && _transform != null) {
    // Illegal transform syntax will return null.
    _transformMatrix = CSSMatrix.computeTransformMatrix(_transform!, this);
  }
  return _transformMatrix;
}
void transformMatrix=(Matrix4? value)

Implementation

set transformMatrix(Matrix4? value) {
  if (value == null || _transformMatrix == value) return;
  _transformMatrix = value;
  renderBoxModel?.markNeedsPaint();
}