DictionaryIncrementRequest_ constructor

DictionaryIncrementRequest_({
  1. List<int>? dictionaryName,
  2. List<int>? field_2,
  3. Int64? amount,
  4. Int64? ttlMilliseconds,
  5. bool? refreshTtl,
})

Implementation

factory DictionaryIncrementRequest_({
  $core.List<$core.int>? dictionaryName,
  $core.List<$core.int>? field_2,
  $fixnum.Int64? amount,
  $fixnum.Int64? ttlMilliseconds,
  $core.bool? refreshTtl,
}) {
  final $result = create();
  if (dictionaryName != null) {
    $result.dictionaryName = dictionaryName;
  }
  if (field_2 != null) {
    $result.field_2 = field_2;
  }
  if (amount != null) {
    $result.amount = amount;
  }
  if (ttlMilliseconds != null) {
    $result.ttlMilliseconds = ttlMilliseconds;
  }
  if (refreshTtl != null) {
    $result.refreshTtl = refreshTtl;
  }
  return $result;
}