GetPriceMarketReply constructor
GetPriceMarketReply({
- Iterable<
PriceHistory> ? buy, - Iterable<
PriceHistory> ? sell, - String? fiat,
- String? token,
Implementation
factory GetPriceMarketReply({
$core.Iterable<PriceHistory>? buy,
$core.Iterable<PriceHistory>? sell,
$core.String? fiat,
$core.String? token,
}) {
final $result = create();
if (buy != null) {
$result.buy.addAll(buy);
}
if (sell != null) {
$result.sell.addAll(sell);
}
if (fiat != null) {
$result.fiat = fiat;
}
if (token != null) {
$result.token = token;
}
return $result;
}