1. override
String toString()

This function returns a String representation of the matrix construct.

It overrides Dart's Object toString function.

Source

@override
String toString() {
  return "{${this._recurseToString(0,this._core)}}";
}