toJson method
Implementation
@override
Map<String, dynamic> toJson() => <String, dynamic>{
'models': models.map((item) => item.toJson()).toList(),
'symbols': symbols.map((item) => item.toJson()).toList(),
'backdrops': backdrops.map((item) => item.toJson()).toList(),
'prices': prices.map((item) => item.toJson()).toList(),
'next_prices': nextPrices.map((item) => item.toJson()).toList(),
'@type': constructor,
};