void setMatrix(Float64List matrix4)

Replaces the current transform with the specified 4⨉4 transformation matrix specified as a list of values in column-major order.

Source

void setMatrix(Float64List matrix4) {
  if (matrix4.length != 16)
    throw new ArgumentError("[matrix4] must have 16 entries.");
  _setMatrix(matrix4);
}