toMap method
Implementation
Map<String, dynamic> toMap() => <String, dynamic>{
"timezone": timezone,
"currentTime": currentTime,
"items": List<dynamic>.from(items.map((UGoldTradeLimitResponse x) => x.toMap())),
"currentLimits": List<dynamic>.from(currentLimits.map((UGoldTradeLimitResponse x) => x.toMap())),
};