filledWithZeros function

Matrix filledWithZeros(
  1. int rows, {
  2. int? columns,
})

Implementation

Matrix filledWithZeros(int rows, {int? columns}) {
  return filledWithScalar(rows, columns, 0);
}