round method

Matrix round([
  1. int places = 8
])

Implementation

Matrix round([int places = 8]) {
  return performFunction((a) => double.parse(a.toStringAsFixed(places)));
}