MatrixLayer constructor

MatrixLayer({
  1. required List<List<double>> matrix,
  2. bool axisInverted = false,
})

Implementation

MatrixLayer({
  required this.matrix,
  this.axisInverted = false,
});