IncrementRequest_ constructor
Implementation
factory IncrementRequest_({
$core.List<$core.int>? cacheKey,
$fixnum.Int64? amount,
$fixnum.Int64? ttlMilliseconds,
}) {
final $result = create();
if (cacheKey != null) {
$result.cacheKey = cacheKey;
}
if (amount != null) {
$result.amount = amount;
}
if (ttlMilliseconds != null) {
$result.ttlMilliseconds = ttlMilliseconds;
}
return $result;
}