toString method

  1. @override
String toString()
override

This overridden method will return a CSV string with a space after each comma. Default behavior is that vectors and rotations will have their toString method invoked

Implementation

@override
String toString() {
  return _list
      .join(", "); // This should trigger the ToString method on each element.
}