toString method

  1. @override
String toString()
override

Returns a string representation of the MarketChartData instance.

The string includes the type name and the date of the market data.

Implementation

@override
String toString() {
  return '${Helpers.getTypeName(MarketChartData)}: date = $date';
}