IncrementRequest_ constructor

IncrementRequest_({
  1. List<int>? cacheKey,
  2. Int64? amount,
  3. Int64? ttlMilliseconds,
})

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;
}