parseMatrix4 function

Matrix4? parseMatrix4(
  1. dynamic list
)

Implementation

Matrix4? parseMatrix4(dynamic list) {
  if (list == null) return null;
  List<double> storage = (list as List).cast<double>();
  return Matrix4.fromList(storage);
}