toSimpleString method

String toSimpleString()

Returns a simple string representation of the DataSet with the type and the number of Entries.

@return

Implementation

String toSimpleString() {
  StringBuffer buffer = StringBuffer();
  buffer.write(
      "DataSet, label: ${getLabel()}, entries:${_values!.length}\n");
  return buffer.toString();
}