parseSmoothMatrix4 function

SmoothMatrix4? parseSmoothMatrix4(
  1. List? list
)

Implementation

SmoothMatrix4? parseSmoothMatrix4(List<dynamic>? list) {
  if (list == null) return null;
  return SmoothMatrix4.fromJson(list);
}