AtomicIncRequest constructor

AtomicIncRequest({
  1. String? storeKey,
  2. String? recordKey,
  3. String? propertyName,
  4. Int64? lowerBound,
  5. Int64? upperBound,
  6. Hint? hint,
})

Implementation

factory AtomicIncRequest({
  $core.String? storeKey,
  $core.String? recordKey,
  $core.String? propertyName,
  $fixnum.Int64? lowerBound,
  $fixnum.Int64? upperBound,
  Hint? hint,
}) {
  final _result = create();
  if (storeKey != null) {
    _result.storeKey = storeKey;
  }
  if (recordKey != null) {
    _result.recordKey = recordKey;
  }
  if (propertyName != null) {
    _result.propertyName = propertyName;
  }
  if (lowerBound != null) {
    _result.lowerBound = lowerBound;
  }
  if (upperBound != null) {
    _result.upperBound = upperBound;
  }
  if (hint != null) {
    _result.hint = hint;
  }
  return _result;
}