GetQuoteSellReply constructor
Implementation
factory GetQuoteSellReply({
$core.double? price,
$fixnum.Int64? timestamp,
$core.double? qoute,
}) {
final $result = create();
if (price != null) {
$result.price = price;
}
if (timestamp != null) {
$result.timestamp = timestamp;
}
if (qoute != null) {
$result.qoute = qoute;
}
return $result;
}