toString method
Returns a string representation of the CoinShort instance.
The string contains the type name and the values of the id, symbol, and name fields.
Implementation
@override
String toString() {
return '${Helpers.getTypeName(CoinShort)}: id = $id, symbol = $symbol, name = $name';
}