zero method Null safety
- Float32x4List matrix,
- int offset
Implementation
static void zero(Float32x4List matrix, int offset) {
final z = Float32x4.zero();
matrix[offset++] = z;
matrix[offset++] = z;
matrix[offset++] = z;
matrix[offset++] = z;
}