AtomicIntRequest constructor
AtomicIntRequest({})
Implementation
factory AtomicIntRequest({
$core.String? storeKey,
$core.String? recordKey,
$core.String? propertyName,
$fixnum.Int64? value,
Hint? hint,
}) {
final _result = create();
if (storeKey != null) {
_result.storeKey = storeKey;
}
if (recordKey != null) {
_result.recordKey = recordKey;
}
if (propertyName != null) {
_result.propertyName = propertyName;
}
if (value != null) {
_result.value = value;
}
if (hint != null) {
_result.hint = hint;
}
return _result;
}